chisel-scripts 2.1.2 → 2.1.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/CHANGELOG.md +4 -0
- package/lib/commands/wp-scripts.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- INSERT-NEW-ENTRIES-HERE -->
|
|
4
4
|
|
|
5
|
+
## <small>2.1.3 (2025-12-16)</small>
|
|
6
|
+
|
|
7
|
+
- fix npm start command bug ([7c524bd](https://github.com/xfiveco/generator-chisel/commit/7c524bd))
|
|
8
|
+
|
|
5
9
|
## <small>2.1.2 (2025-12-16)</small>
|
|
6
10
|
|
|
7
11
|
- make icons module optional ([94e4c6c](https://github.com/xfiveco/generator-chisel/commit/94e4c6c))
|
|
@@ -77,7 +77,7 @@ export default function wpScripts(api) {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
for (const extension of extensions) {
|
|
80
|
-
if (!extension.module.
|
|
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.
|
|
3
|
+
"version": "2.1.3",
|
|
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": "
|
|
42
|
+
"gitHead": "2864ed6f07010161d850ae9e7a92457eae4e3cc3"
|
|
43
43
|
}
|