@caweb/webpack 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/webpack",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "CAWebPublishing Webpack Configuration",
5
5
  "main": "webpack.config.js",
6
6
  "files": [
@@ -61,7 +61,7 @@
61
61
  "source-map-loader": "^5.0.0",
62
62
  "thread-loader": "^4.0.4",
63
63
  "ts-loader": "^9.5.4",
64
- "webpack": "^5.105.2",
64
+ "webpack": "^5.105.3",
65
65
  "webpack-cli": "^6.0.1",
66
66
  "webpack-dev-server": "^5.2.3",
67
67
  "webpack-merge": "^6.0.1",
package/webpack.config.js CHANGED
@@ -154,14 +154,6 @@ let webpackConfig = {
154
154
  ]
155
155
  },
156
156
 
157
- /**
158
- * Devtool Configuration
159
- * WordPress by default uses 'source-map' for devtool which affects build and rebuild speed.
160
- * For development we switch to 'eval' which is much faster.
161
- * @see https://webpack.js.org/configuration/devtool/#devtool
162
- */
163
- devtool: isProduction ? 'source-map' : 'eval',
164
-
165
157
  /**
166
158
  * Turn off caching of generated modules and chunks.
167
159
  * @see https://webpack.js.org/configuration/cache/