Skip to content
This repository has been archived by the owner on Dec 28, 2018. It is now read-only.

Commit

Permalink
refactor(gulpfile.js): remove dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuharuohzeki committed Apr 25, 2016
1 parent 7f9760b commit c975c05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Empty file removed dist/client/.gitkeep
Empty file.
Empty file removed dist/server/.gitkeep
Empty file.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,21 @@ const CWD = path.relative(__dirname, '');

// clean up
gulp.task('__clean:client:js:obj', function () {
return del(path.join(OBJ_CLIENT, '**', '*.*'));
return del(OBJ_CLIENT);
});
gulp.task('__clean:client:js:dist', function () {
return del(path.join(DIST_CLIENT_JS, '**', '*.*'));
return del(DIST_CLIENT_JS);
});

gulp.task('__clean:client:css:dist', function () {
return del(path.join(DIST_CLIENT_CSS, '**', '*.*'));
return del(DIST_CLIENT_CSS);
});

gulp.task('__clean:server:obj', function () {
return del(path.join(OBJ_SERVER, '**', '*.*'));
return del(OBJ_SERVER);
});
gulp.task('__clean:server:dist', function () {
return del(path.join(DIST_SERVER, '**', '*.*'));
return del(DIST_SERVER);
});

// make obj/
Expand Down

0 comments on commit c975c05

Please sign in to comment.