diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-07 02:38:02 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-07 02:38:02 +0900 |
| commit | 04db5944d1511fdcf5a63849eb4ae4bc54675b0c (patch) | |
| tree | b798ebf54d4e9ddce62466fb4daaf57657caf398 /gulpfile.ts | |
| parent | markdown (diff) | |
| download | misskey-04db5944d1511fdcf5a63849eb4ae4bc54675b0c.tar.gz misskey-04db5944d1511fdcf5a63849eb4ae4bc54675b0c.tar.bz2 misskey-04db5944d1511fdcf5a63849eb4ae4bc54675b0c.zip | |
Fix #5854
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index fde66717a2..989093cea7 100644 --- a/gulpfile.ts +++ b/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( |