diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 11:43:07 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 11:43:07 +0900 |
| commit | f41c85110825443bfe26001161b72d828af56d7b (patch) | |
| tree | 6542cd38f5273f1d02c23782bebc0211f60482ae /gulpfile.ts | |
| parent | update page editor (#7317) (diff) | |
| download | misskey-f41c85110825443bfe26001161b72d828af56d7b.tar.gz misskey-f41c85110825443bfe26001161b72d828af56d7b.tar.bz2 misskey-f41c85110825443bfe26001161b72d828af56d7b.zip | |
gulp refactor
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 0cdd016fd7..771a5c0e32 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -77,17 +77,9 @@ gulp.task('cleanall', gulp.parallel('clean', cb => rimraf('./node_modules', cb) )); -gulp.task('copy:docs', () => - gulp.src([ - './src/docs/**/*', - ]) - .pipe(gulp.dest('./built/assets/docs/')) -); - gulp.task('build', gulp.parallel( 'build:ts', 'build:copy', - 'copy:docs', )); gulp.task('default', gulp.task('build')); |