From 30b8e39f6207bdd1e484b9be89ee3e7f81b2cf1b Mon Sep 17 00:00:00 2001 From: mtthwmnc Date: Fri, 17 Jan 2020 16:38:33 -0500 Subject: [PATCH 1/3] Remove devtool --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index c31798a..5c235b8 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,7 @@ const path = require('path'); module.exports = function (appRoot) { return { entry: [`${appRoot}/src/js/site.js`, `${appRoot}/src/scss/site.scss`], - devtool: '#eval-source-map', + devtool: 'none', output: { path: `${appRoot}/public/js/`, filename: 'always.js', From 3dc4c5212ae9419a3a314d5e7a9ece2b4e25b3df Mon Sep 17 00:00:00 2001 From: mtthwmnc Date: Tue, 21 Jan 2020 11:32:18 -0500 Subject: [PATCH 2/3] Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f7fb69f..d1750a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pk-webpack", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "index.js", "scripts": { From 85f3a0850fbf755fa615f6bf63bc7f5705c68bb7 Mon Sep 17 00:00:00 2001 From: mtthwmnc Date: Tue, 21 Jan 2020 11:38:48 -0500 Subject: [PATCH 3/3] Remove devtool entirely --- webpack.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 5c235b8..cbf6b14 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,6 @@ const path = require('path'); module.exports = function (appRoot) { return { entry: [`${appRoot}/src/js/site.js`, `${appRoot}/src/scss/site.scss`], - devtool: 'none', output: { path: `${appRoot}/public/js/`, filename: 'always.js',