summaryrefslogtreecommitdiff
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-12-21 15:40:58 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-12-21 15:40:58 +0100
commit481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9 (patch)
tree9675873d4f28bce747d7d38701305d5ffc2e9324 /js/gulpfile.js
parentFixed --filter/--rfilter issue when platform filters are set (diff)
downloadice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.tar.bz2
ice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.tar.xz
ice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.zip
Added support for running browser test with WebWorkers
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index 47908d5bca5..3592e38e6a9 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -141,7 +141,7 @@ gulp.task("common:slice", [],
gulp.task("common:slice-babel", ["common:slice"],
function(){
- return gulp.src(["test/Common/Controller.js", "test/Common/ControllerI.js"])
+ return gulp.src(["test/Common/Controller.js", "test/Common/ControllerI.js", "test/Common/ControllerWorker.js"])
.pipe(babel({compact: false}))
.pipe(gulp.dest("test/es5/Common"));
});