diff --git a/scripts/gulp/tasks/docs.ts b/scripts/gulp/tasks/docs.ts index b1a5c49318..18d97c9d92 100644 --- a/scripts/gulp/tasks/docs.ts +++ b/scripts/gulp/tasks/docs.ts @@ -76,7 +76,7 @@ function copyDemoPolyfills(outputDir: string) { function copyDemoContent(outputDir: string) { return new Promise((resolve, reject) => { const stream = src([ - `${DIST_DEMOS_ROOT}/**/*` + `${DIST_DEMOS_ROOT}/src/**/*` ]).pipe(dest(outputDir)); stream.on('end', () => { resolve();