chisel-scripts 2.1.2 → 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,14 @@
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
+
9
+ ## <small>2.1.3 (2025-12-16)</small>
10
+
11
+ - fix npm start command bug ([7c524bd](https://github.com/xfiveco/generator-chisel/commit/7c524bd))
12
+
5
13
  ## <small>2.1.2 (2025-12-16)</small>
6
14
 
7
15
  - make icons module optional ([94e4c6c](https://github.com/xfiveco/generator-chisel/commit/94e4c6c))
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
 
@@ -77,7 +77,7 @@ export default function wpScripts(api) {
77
77
  }
78
78
 
79
79
  for (const extension of extensions) {
80
- if (!extension.module.module.build || (extension.name === 'icons.mjs' && !options.useIconsModule)) continue;
80
+ if (!extension.module.build || (extension.name === 'icons.mjs' && !options.useIconsModule)) continue;
81
81
 
82
82
  await extension.module.start(api);
83
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chisel-scripts",
3
- "version": "2.1.2",
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": "54768b8dd93e3773c3659f28445c9c6d76a2819c"
42
+ "gitHead": "0e9815944ac4188917808f5f4ea981b853294708"
43
43
  }