diff options
-rw-r--r-- | js/gulpfile.js | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js index 5cc6308e9c2..e6adbcad21a 100644 --- a/js/gulpfile.js +++ b/js/gulpfile.js @@ -132,18 +132,13 @@ gulp.task("common:slice-babel", ["common:slice"], gulp.dest("test/es5/Common")], cb); }); -gulp.task("common:slice:clean", [], +gulp.task("common:clean", [], function(){ del(["test/Common/Controller.js", "test/Common/.depend", "test/es5/Common/Controller.js"]); }); -gulp.task("common:clean", [], - function(){ - del(["assets/common.css", "assets/common.js"]); - }); - gulp.task("import:slice2js", [], function(cb){ pump([ @@ -220,7 +215,7 @@ tests.forEach( gulp.task("test", tests.map(testBabelTask).concat( ["common:slice-babel", "import:bundle"])); -gulp.task("test:clean", tests.map(testBabelCleanTask).concat(["common:slice:clean", "import:clean"])); +gulp.task("test:clean", tests.map(testBabelCleanTask).concat(["common:clean", "import:clean"])); // // Tasks to build IceJS Distribution |