From 474a7b451ecb4b1355094385d6106cdcc2b29ed1 Mon Sep 17 00:00:00 2001 From: perry Date: Wed, 21 Sep 2016 14:34:34 -0500 Subject: [PATCH] chore(CI): new gulp task names for docs --- scripts/docs/deploy.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/docs/deploy.sh b/scripts/docs/deploy.sh index 4ec6751b1a..d8e4be7f29 100755 --- a/scripts/docs/deploy.sh +++ b/scripts/docs/deploy.sh @@ -20,7 +20,7 @@ function run { VERSION=$(readJsonProp "package.json" "version") #compile API Demos - ./node_modules/.bin/gulp demos --production=true + ./node_modules/.bin/gulp docs.demos --production=true # if release, copy old version to seperate folder and blow out docs root api if $IS_RELEASE; then @@ -34,9 +34,9 @@ function run { rm -R $DOCS_DEST/nightly/api fi - ./node_modules/.bin/gulp docs --doc-version="$VERSION_NAME" --initial-build true - ./node_modules/.bin/gulp docs --doc-version="$VERSION_NAME" - ./node_modules/.bin/gulp docs --doc-version="nightly" + ./node_modules/.bin/gulp docs.dgeni --doc-version="$VERSION_NAME" --initial-build true + ./node_modules/.bin/gulp docs.dgeni --doc-version="$VERSION_NAME" + ./node_modules/.bin/gulp docs.dgeni --doc-version="nightly" else @@ -44,12 +44,12 @@ function run { rm -R $DOCS_DEST/nightly/api fi - ./node_modules/.bin/gulp docs --doc-version="$VERSION_NAME" + ./node_modules/.bin/gulp docs.dgeni --doc-version="$VERSION_NAME" fi # compile sass vars json for ionic-site docs - ./node_modules/.bin/gulp docs.sass-variables + ./node_modules/.bin/gulp docs.sassVariables cp tmp/sass.json $DOCS_DEST/theming/overriding-ionic-variables/ # CD in to the site dir to commit updated docs