From c7650846a2d4d04f8941048ee1a0eebfef4e9473 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 12 Nov 2021 10:24:19 +0900 Subject: add install/build scripts --- gulpfile.js | 8 -------- 1 file changed, 8 deletions(-) (limited to 'gulpfile.js') 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' )); -- cgit v1.3.1-freya