chisel-scripts 2.0.0-alpha.5 → 2.0.0
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 +16 -0
- package/composer.phar +0 -0
- package/lib/template/.nvmrc +1 -0
- package/lib/template/wp-config-local.chisel-tpl.php +2 -1
- package/package.json +4 -4
- package/wp-cli.phar +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- INSERT-NEW-ENTRIES-HERE -->
|
|
4
4
|
|
|
5
|
+
## 2.0.0 (2025-12-04)
|
|
6
|
+
|
|
7
|
+
- update chisel scripts peerDependencies ([7110a79](https://github.com/xfiveco/generator-chisel/commit/7110a79))
|
|
8
|
+
|
|
9
|
+
## 2.0.0-2.0.0-alpha.8.1 (2025-03-18)
|
|
10
|
+
|
|
11
|
+
- fix Interfaces and Traits namespaces in php < 8, add nvmrc to root folder ([cb60f42](https://github.com/xfiveco/generator-chisel/commit/cb60f42))
|
|
12
|
+
|
|
13
|
+
## 2.0.0-2.0.0-alpha.8.0 (2025-02-04)
|
|
14
|
+
|
|
15
|
+
- config local update ([ce2a342](https://github.com/xfiveco/generator-chisel/commit/ce2a342))
|
|
16
|
+
|
|
17
|
+
## 2.0.0-alpha.6 (2025-02-04)
|
|
18
|
+
|
|
19
|
+
- blocks, scripts, images optimize, mega menu settings ([d8a8b3c](https://github.com/xfiveco/generator-chisel/commit/d8a8b3c))
|
|
20
|
+
|
|
5
21
|
## 2.0.0-alpha.5 (2024-12-06)
|
|
6
22
|
|
|
7
23
|
- refactor: icons.mjs - updated preview generation ([16f7792](https://github.com/xfiveco/generator-chisel/commit/16f7792))
|
package/composer.phar
CHANGED
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
20.12.2
|
|
@@ -48,9 +48,10 @@ $table_prefix = '<%= tablePrefix %>';
|
|
|
48
48
|
*
|
|
49
49
|
* @link https://codex.wordpress.org/Debugging_in_WordPress
|
|
50
50
|
*/
|
|
51
|
+
|
|
51
52
|
define( 'WP_DEBUG', true );
|
|
52
53
|
define( 'WP_DEBUG_LOG', true );
|
|
53
|
-
define( 'WP_DEBUG_DISPLAY',
|
|
54
|
+
define( 'WP_DEBUG_DISPLAY', false );
|
|
54
55
|
|
|
55
56
|
// Required for the theme fast refresh mode.
|
|
56
57
|
define( 'SCRIPT_DEBUG', true );
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chisel-scripts",
|
|
3
|
-
"version": "2.0.0
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Chisel scripts",
|
|
5
5
|
"bin": {
|
|
6
6
|
"chisel-scripts": "bin/chisel-scripts.js"
|
|
7
7
|
},
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"svgo": "^3.3.2"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@wordpress/scripts": "^27.9.0"
|
|
40
|
+
"@wordpress/scripts": "^27.9.0 || ^31.0.0 || ^31.1.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "0fc6fceb2369e8bba9e6b069c70c480fe7322639"
|
|
43
43
|
}
|
package/wp-cli.phar
CHANGED
|
Binary file
|