summaryrefslogtreecommitdiff
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-10-31 15:54:21 -0400
committerBernard Normier <bernard@zeroc.com>2016-10-31 15:54:21 -0400
commit107e03ea13e0eba9c33f120f0d95ac9fefc7dcad (patch)
tree00191b7ccb83fe436ad61bdbb43b523f431c6698 /js/gulpfile.js
parentUpdate 3.7 changelog (diff)
downloadice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.tar.bz2
ice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.tar.xz
ice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.zip
Replaced slice compiler options --ice, --underscore and --dll-export by
global metadata directives (ice-prefix, underscore, cpp:dll-export:SYMBOL and objc:dll-export:SYMBOL) Added new cs:tie and java:tie metadata
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 be6ca15a7c2..f2417614cb2 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -346,7 +346,7 @@ libs.forEach(
gulp.task(generateTask(lib),
function(){
return gulp.src(sources.slice.map(sliceFile))
- .pipe(slice2js({args: ["--ice"], dest: srcDir(lib)}))
+ .pipe(slice2js({dest: srcDir(lib)}))
.pipe(gulp.dest(srcDir(lib)));
});