summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-12 10:24:19 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-12 10:24:19 +0900
commitc7650846a2d4d04f8941048ee1a0eebfef4e9473 (patch)
treec6eecf706747accaeaa6e2b08ccb50f13ce80c65 /gulpfile.js
parentUpdate CONTRIBUTING.md (diff)
downloadmisskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.tar.gz
misskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.tar.bz2
misskey-c7650846a2d4d04f8941048ee1a0eebfef4e9473.zip
add install/build scripts
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js8
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'
));