summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-05-26 19:20:56 +0200
committerJose <jose@zeroc.com>2017-05-26 19:20:56 +0200
commit78e8b506c03fb3b6c1502be585653ebdbe4d92d2 (patch)
tree246ec3cfee50dfd7169c983adb4e09497b2eac97
parentFix (ICE-7923) - suppress deprecation warnings (diff)
downloadice-78e8b506c03fb3b6c1502be585653ebdbe4d92d2.tar.bz2
ice-78e8b506c03fb3b6c1502be585653ebdbe4d92d2.tar.xz
ice-78e8b506c03fb3b6c1502be585653ebdbe4d92d2.zip
JS build minor fix, do not remove common.js/common.cs on clean
-rw-r--r--js/gulpfile.js9
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