summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-28 22:58:54 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-28 22:58:54 +0200
commit38a74188d759444d7e1abac856f78ae710e2a4c5 (patch)
tree56a6b025d93248ce6c4ef77035d5098c1da49418 /gulpfile.js
parent8ac71597ecded8f9907e83a2155bd1633330518f (diff)
downloadwallet-core-38a74188d759444d7e1abac856f78ae710e2a4c5.tar.gz
wallet-core-38a74188d759444d7e1abac856f78ae710e2a4c5.tar.bz2
wallet-core-38a74188d759444d7e1abac856f78ae710e2a4c5.zip
gulpfile / translations
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 568300614..e7d4ccef3 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -71,7 +71,6 @@ const paths = {
"img/icon.png",
"img/logo.png",
"src/**/*.{css,html}",
- "src/emscripten/taler-emscripten-lib.js",
"dist/*-bundle.js",
],
// for the source distribution
@@ -156,7 +155,7 @@ function concatStreams (/*streams...*/) {
-gulp.task("dist-prod", ["clean", "compile-prod"], function () {
+gulp.task("dist-prod", ["compile-prod"], function () {
return vfs.src(paths.dist, {base: ".", stripBOM: false})
.pipe(gulp.dest("build/ext/"));
});
@@ -171,7 +170,7 @@ gulp.task("compile-prod", function (callback) {
});
});
-gulp.task("manifest-stable", ["clean"], function () {
+gulp.task("manifest-stable", function () {
return gulp.src("manifest.json")
.pipe(jsonTransform((data) => {
data.name = "GNU Taler Wallet";
@@ -180,7 +179,7 @@ gulp.task("manifest-stable", ["clean"], function () {
.pipe(gulp.dest("build/ext/"));
});
-gulp.task("manifest-unstable", ["clean"], function () {
+gulp.task("manifest-unstable", function () {
return gulp.src("manifest.json")
.pipe(jsonTransform((data) => {
data.name = "GNU Taler Wallet (unstable)";