From 205690f359397b63f84274d7c70264446d02d4b0 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 12 Apr 2017 17:40:31 -0700 Subject: [PATCH] build: publish material-examples package to docs content (#4064) --- scripts/release/publish-docs-content.sh | 20 ++++++++++---------- tools/gulp/tasks/docs.ts | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/scripts/release/publish-docs-content.sh b/scripts/release/publish-docs-content.sh index 8322955be7d2..254e7ed499dc 100755 --- a/scripts/release/publish-docs-content.sh +++ b/scripts/release/publish-docs-content.sh @@ -6,14 +6,13 @@ cd "$(dirname $0)/../../" docsPath="./dist/docs" +packagePath="./dist/releases/material-examples" repoPath="/tmp/material2-docs-content" repoUrl="https://github.com/angular/material2-docs-content" examplesSource="./dist/docs/examples" -# If the docs directory is not present, generate docs -if [ ! -d $docsPath ]; then - $(npm bin)/gulp docs -fi +$(npm bin)/gulp examples:release +$(npm bin)/gulp docs # Get git meta info for commit commitSha="$(git rev-parse --short HEAD)" @@ -28,15 +27,16 @@ git clone $repoUrl $repoPath # Clean out repo directory and copy contents of dist/docs into it rm -rf $repoPath/* -mkdir $repoPath/overview -mkdir $repoPath/guides -mkdir $repoPath/api -mkdir $repoPath/examples -mkdir $repoPath/plunker + +# Create folders that will contain docs content files. +mkdir $repoPath/{overview,guides,api,examples,plunker,examples-package} # Copy api files over to $repoPath/api cp -r $docsPath/api/* $repoPath/api +# Copy the material-examples package to the docs content repository. +cp -r $packagePath/* $repoPath/examples-package + # Flatten the markdown docs structure and move it into $repoPath/overview overviewFiles=$docsPath/markdown/ for filename in $overviewFiles* @@ -65,7 +65,7 @@ done cp -r $examplesSource/* $repoPath/examples # Copy example plunker assets -rsync -a $docsPath/plunker $repoPath/plunker +cp -r $docsPath/plunker/* $repoPath/plunker # Copies assets over to the docs-content repository. cp LICENSE $repoPath/ diff --git a/tools/gulp/tasks/docs.ts b/tools/gulp/tasks/docs.ts index 499bf5baab55..b390ff6ea64c 100644 --- a/tools/gulp/tasks/docs.ts +++ b/tools/gulp/tasks/docs.ts @@ -88,7 +88,7 @@ task('highlight-examples', () => { path.basename = `${path.basename}-${extension}`; }; - return src('src/examples/**/*.+(html|css|ts)') + return src('src/material-examples/**/*.+(html|css|ts)') .pipe(flatten()) .pipe(rename(renameFile)) .pipe(highlight()) @@ -111,7 +111,7 @@ task('minified-api-docs', ['api-docs'], () => { /** Copies example sources to be used as plunker assets for the docs site. */ task('plunker-example-assets', () => { - src(path.join(SOURCE_ROOT, 'examples', '**/*')) + src(path.join(SOURCE_ROOT, 'material-examples', '**/*')) .pipe(dest(path.join(DIST_DOCS, 'plunker', 'examples'))); });