Fix #5854
This commit is contained in:
parent
9c97bb431c
commit
04db5944d1
5 changed files with 83 additions and 32 deletions
10
gulpfile.ts
10
gulpfile.ts
|
@ -74,9 +74,17 @@ gulp.task('copy:client', () =>
|
|||
.pipe(gulp.dest('./built/client/assets/'))
|
||||
);
|
||||
|
||||
gulp.task('copy:docs', () =>
|
||||
gulp.src([
|
||||
'./src/docs/**/*',
|
||||
])
|
||||
.pipe(gulp.dest('./built/client/assets/docs/'))
|
||||
);
|
||||
|
||||
gulp.task('build:client', gulp.parallel(
|
||||
'build:client:styles',
|
||||
'copy:client'
|
||||
'copy:client',
|
||||
'copy:docs'
|
||||
));
|
||||
|
||||
gulp.task('build', gulp.parallel(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue