From 32d6fcf19e4123cb6817923a4efcb99dd5e646f8 Mon Sep 17 00:00:00 2001 From: Igor Randjelovic Date: Wed, 20 Jan 2021 14:14:26 +0100 Subject: [PATCH] Update build-docs.sh --- build-docs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-docs.sh b/build-docs.sh index dcf6cd329..960f13b02 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -12,6 +12,7 @@ archive_dist_dir() { } npm_install() { + echo "npm_install called" # Don't install modules twice. MARKER_FILE="./node_modules/installed" @@ -19,6 +20,7 @@ npm_install() { npm install npm install @types/handlebars@4.0.33 touch "$MARKER_FILE" + echo "npm_install installed successfully" fi } @@ -51,6 +53,8 @@ rm -rf "$TARGET_DIR" mkdir -p "$TARGET_DIR" if [ "${BASH_SOURCE[0]}" == "$0" ] ; then + echo "about to extract_snippets" extract_snippets + echo "about to extract_apiref" extract_apiref fi