@razerspine/webpack-core 1.1.4 → 1.1.5

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.
@@ -7,6 +7,13 @@ function createProdConfig(baseConfig) {
7
7
  devtool: 'source-map',
8
8
  optimization: {
9
9
  minimize: true,
10
- }
10
+ // ⚠️ splitChunks deliberately disabled
11
+ // pug-plugin manages assets & entries itself
12
+ splitChunks: false,
13
+ runtimeChunk: false,
14
+ },
15
+ performance: {
16
+ hints: false,
17
+ },
11
18
  });
12
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razerspine/webpack-core",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Core webpack config and loaders for starter templates",
5
5
  "license": "ISC",
6
6
  "author": "Razerspine",