chisel-scripts 2.1.3 → 2.1.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  <!-- INSERT-NEW-ENTRIES-HERE -->
4
4
 
5
+ ## <small>2.1.4 (2025-12-17)</small>
6
+
7
+ - fix no experimental dev mode runtime chunk ([84817eb](https://github.com/xfiveco/generator-chisel/commit/84817eb))
8
+
5
9
  ## <small>2.1.3 (2025-12-16)</small>
6
10
 
7
11
  - fix npm start command bug ([7c524bd](https://github.com/xfiveco/generator-chisel/commit/7c524bd))
package/index.js CHANGED
@@ -162,7 +162,7 @@ function adjustWebpackConfig(baseConfig, directory) {
162
162
  }
163
163
  })
164
164
  : {
165
- ...preparedConfig(baseConfig),
165
+ ...preparedConfig(baseConfig, 0),
166
166
  entry,
167
167
  }
168
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chisel-scripts",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Chisel scripts",
5
5
  "bin": {
6
6
  "chisel-scripts": "bin/chisel-scripts.js"
@@ -39,5 +39,5 @@
39
39
  "peerDependencies": {
40
40
  "@wordpress/scripts": "^27.9.0 || ^31.0.0 || ^31.1.0"
41
41
  },
42
- "gitHead": "2864ed6f07010161d850ae9e7a92457eae4e3cc3"
42
+ "gitHead": "0e9815944ac4188917808f5f4ea981b853294708"
43
43
  }