Skip to content

Commit 9bfabfc

Browse files
committed
chore(demos): copy over all demo assets
copy over all demo assets
1 parent a9ee835 commit 9bfabfc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/gulp/tasks/docs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ function copyDemoPolyfills(outputDir: string) {
7474

7575
function copyDemoContent(outputDir: string) {
7676
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));
77+
const stream = src([
78+
`${DEMOS_ROOT}/src/**/*`,
79+
`${DEMOS_ROOT}/src/scrollbar-fix.*`
80+
]).pipe(dest(outputDir));
7881
stream.on('end', () => {
7982
resolve();
8083
});

0 commit comments

Comments
 (0)