summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-18 21:30:33 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-18 21:30:33 +0200
commit23e72ce25cb5f7eede60281b499f527554db2185 (patch)
tree53828fb3fb640da9f6c734953cfd764504daf49f /gulpfile.js
parent9e6c57daa5d75bcb1a703beceb03a53c05ada63f (diff)
downloadwallet-core-23e72ce25cb5f7eede60281b499f527554db2185.tar.gz
wallet-core-23e72ce25cb5f7eede60281b499f527554db2185.tar.bz2
wallet-core-23e72ce25cb5f7eede60281b499f527554db2185.zip
get rid of web-common and build directory (in favor of just dist/)
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js18
1 files changed, 8 insertions, 10 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 1ebeb2564..63965e7ea 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -24,7 +24,7 @@
* - tsconfig: generate tsconfig.json file for
* development
* - package: create Chrome extension zip file in
- * build/.
+ * dist/.
*
* @author Florian Dold
*/
@@ -144,7 +144,7 @@ function concatStreams (...streams) {
function dist_prod() {
return vfs.src(paths.dist, {base: ".", stripBOM: false})
- .pipe(gulp.dest("build/ext/"));
+ .pipe(gulp.dest("dist/ext/"));
}
function compile_prod(callback) {
@@ -173,7 +173,7 @@ function manifest_stable() {
data.name = "GNU Taler Wallet";
return data;
}, 2))
- .pipe(gulp.dest("build/ext/"));
+ .pipe(gulp.dest("dist/ext/"));
}
@@ -183,7 +183,7 @@ function manifest_unstable() {
data.name = "GNU Taler Wallet (unstable)";
return data;
}, 2))
- .pipe(gulp.dest("build/ext/"));
+ .pipe(gulp.dest("dist/ext/"));
}
@@ -191,20 +191,18 @@ function package_stable () {
let basename = String.prototype.concat("taler-wallet-stable-", manifest.version_name, "-", manifest.version);
let zipname = basename + ".zip";
let xpiname = basename + ".xpi";
- return gulp.src("build/ext/**", {buffer: false, stripBOM: false})
+ return gulp.src("dist/ext/**", {buffer: false, stripBOM: false})
.pipe(zip(zipname))
- .pipe(gulp.dest("build/"));
- //.pipe(symlink("build/" + xpiname, {relativeSymlinks: true, overwrite: true}));
+ .pipe(gulp.dest("dist/"));
}
function package_unstable () {
let basename = String.prototype.concat("taler-wallet-unstable-", manifest.version_name, "-", manifest.version);
let zipname = basename + ".zip";
let xpiname = basename + ".xpi";
- return gulp.src("build/ext/**", {buffer: false, stripBOM: false})
+ return gulp.src("dist/ext/**", {buffer: false, stripBOM: false})
.pipe(zip(zipname))
- .pipe(gulp.dest("build/"));
- //.pipe(symlink("build/" + xpiname, {relativeSymlinks: true, overwrite: true}));
+ .pipe(gulp.dest("dist/"));
}