From 985e376911ec32ad5e37dd17e3425a96cb416c09 Mon Sep 17 00:00:00 2001 From: kumavis Date: Fri, 23 Mar 2018 15:52:53 -0700 Subject: [PATCH] build - for build, write sourcemaps to dist/sourcemaps --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'))