From 23e72ce25cb5f7eede60281b499f527554db2185 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 18 Aug 2019 21:30:33 +0200 Subject: get rid of web-common and build directory (in favor of just dist/) --- gulpfile.js | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'gulpfile.js') 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/")); } -- cgit v1.2.3