diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-12 10:24:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-12 10:24:19 +0900 |
| commit | c7650846a2d4d04f8941048ee1a0eebfef4e9473 (patch) | |
| tree | c6eecf706747accaeaa6e2b08ccb50f13ce80c65 /gulpfile.js | |
| parent | Update CONTRIBUTING.md (diff) | |
| download | misskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.tar.gz misskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.tar.bz2 misskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.zip | |
add install/build scripts
Diffstat (limited to 'gulpfile.js')
| -rw-r--r-- | gulpfile.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gulpfile.js b/gulpfile.js index 91d3a3ade7..c27abefcb8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,14 +50,6 @@ gulp.task('build:backend:style', () => { .pipe(gulp.dest('./packages/backend/built/server/web/')); }); -gulp.task('clean', cb => - rimraf('./built', cb) -); - -gulp.task('cleanall', gulp.parallel('clean', cb => - rimraf('./node_modules', cb) -)); - gulp.task('build', gulp.parallel( 'copy:client:locales', 'copy:backend:views', 'build:backend:script', 'build:backend:style', 'copy:client:fonts' )); |