diff options
author | kumavis <aaron@kumavis.me> | 2018-03-24 06:52:53 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-24 06:52:53 +0800 |
commit | 985e376911ec32ad5e37dd17e3425a96cb416c09 (patch) | |
tree | 116b5b9a7aee043fabfc3ce9c84b8857ef66fbba /gulpfile.js | |
parent | 154f384fe4cce76a268d31b8f535fbbac7a206af (diff) | |
download | tangerine-wallet-browser-985e376911ec32ad5e37dd17e3425a96cb416c09.tar.gz tangerine-wallet-browser-985e376911ec32ad5e37dd17e3425a96cb416c09.tar.zst tangerine-wallet-browser-985e376911ec32ad5e37dd17e3425a96cb416c09.zip |
build - for build, write sourcemaps to dist/sourcemaps
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 3b926377a..9a694addf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -411,7 +411,7 @@ function bundleTask(opts) { mangle: { reserved: [ 'MetamaskInpageProvider' ] }, }))) // writes .map file - .pipe(sourcemaps.write(debug ? './' : '../../maps')) + .pipe(sourcemaps.write(debug ? './' : '../../sourcemaps')) // write completed bundles .pipe(gulp.dest('./dist/firefox/scripts')) .pipe(gulp.dest('./dist/chrome/scripts')) |