From eb8f0f403354ce737e052a4caf27212ec5f1fbe3 Mon Sep 17 00:00:00 2001 From: Dolan Date: Mon, 17 Apr 2017 13:05:02 +0100 Subject: [PATCH] added debugging to deployment --- deploy-docs.sh | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy-docs.sh b/deploy-docs.sh index 60e7ef9903..6544b8684f 100644 --- a/deploy-docs.sh +++ b/deploy-docs.sh @@ -28,7 +28,9 @@ git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH cd .. # Clean out existing contents +echo "Cleaning out existing contents." rm -rf docs/**/* || exit 0 +ls # Run our compile script doCompile diff --git a/package.json b/package.json index 47d0e692cf..d498574ebd 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "lint": "tslint --project ./ts", "build": "rimraf ./build && tsc -p ts", "demo": "npm run build && node ./demo", - "typedoc": "typedoc --out docs/ ts/ --module commonjs --target ES6" + "typedoc": "typedoc --out docs/ ts/ --module commonjs --target ES6 --disableOutputCheck" }, "files": [ "ts",