From 7a76d80eb2e894461cc9ef12913dde3638b37009 Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Mon, 15 Apr 2019 12:44:24 +0300 Subject: [PATCH] Remove js obfuscation to fit new Google Chrome extensions development guidelines --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 289cce2b5..193b64466 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -302,7 +302,7 @@ function createTasksForBuildJsExtension ({ buildJsFiles, taskPrefix, devMode, bu bundleTaskOpts = Object.assign({ buildSourceMaps: true, sourceMapDir: devMode ? './' : '../sourcemaps', - minifyBuild: !devMode, + minifyBuild: false, buildWithFullPaths: devMode, watch: devMode, devMode, @@ -318,7 +318,7 @@ function createTasksForBuildJsMascara ({ taskPrefix, devMode, bundleTaskOpts = { bundleTaskOpts = Object.assign({ buildSourceMaps: true, sourceMapDir: './', - minifyBuild: !devMode, + minifyBuild: false, buildWithFullPaths: devMode, watch: devMode, devMode,