mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-19 04:08:54 +00:00
Added clean task
This commit is contained in:
parent
70fdc73d8f
commit
87d91b07be
2 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
|||
var gulp = require('gulp'),
|
||||
_ = require('lodash'),
|
||||
rimraf = require('rimraf'),
|
||||
nodemon = require('gulp-nodemon'),
|
||||
karma = require('karma').server,
|
||||
stylus = require('gulp-stylus'),
|
||||
|
|
@ -31,8 +32,8 @@ gulp.task('git_changelog', function() {
|
|||
// @TODO: Finish this
|
||||
});
|
||||
|
||||
gulp.task('clean', function() {
|
||||
// @TODO: Finish this
|
||||
gulp.task('clean', function(cb) {
|
||||
rimraf('./build', cb);
|
||||
});
|
||||
|
||||
gulp.task('stylus', function() {
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@
|
|||
"nib": "^1.0.4",
|
||||
"phantomjssmith": "~0.5.4",
|
||||
"protractor": "~0.14.0",
|
||||
"rimraf": "^2.2.8",
|
||||
"superagent": "~0.15.7",
|
||||
"superagent-defaults": "~0.1.5"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue