From 9bfabfc289c14b18ab444bd32c41d3d66195a115 Mon Sep 17 00:00:00 2001 From: Dan Bucholtz Date: Tue, 27 Sep 2016 16:16:08 -0500 Subject: [PATCH] chore(demos): copy over all demo assets copy over all demo assets --- scripts/gulp/tasks/docs.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/gulp/tasks/docs.ts b/scripts/gulp/tasks/docs.ts index aeee35e66c..78e02f5605 100644 --- a/scripts/gulp/tasks/docs.ts +++ b/scripts/gulp/tasks/docs.ts @@ -74,7 +74,10 @@ function copyDemoPolyfills(outputDir: string) { function copyDemoContent(outputDir: string) { return new Promise((resolve, reject) => { - const stream = src([`${DEMOS_ROOT}/src/**/index.html`, `${DEMOS_ROOT}/src/**/main.bundle.js`, `${DEMOS_ROOT}/src/scrollbar-fix.*`]).pipe(dest(outputDir)); + const stream = src([ + `${DEMOS_ROOT}/src/**/*`, + `${DEMOS_ROOT}/src/scrollbar-fix.*` + ]).pipe(dest(outputDir)); stream.on('end', () => { resolve(); });