We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9ee835 commit 9bfabfcCopy full SHA for 9bfabfc
scripts/gulp/tasks/docs.ts
@@ -74,7 +74,10 @@ function copyDemoPolyfills(outputDir: string) {
74
75
function copyDemoContent(outputDir: string) {
76
return new Promise((resolve, reject) => {
77
- 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([
78
+ `${DEMOS_ROOT}/src/**/*`,
79
+ `${DEMOS_ROOT}/src/scrollbar-fix.*`
80
+ ]).pipe(dest(outputDir));
81
stream.on('end', () => {
82
resolve();
83
});
0 commit comments