@wordpress/create-block 4.63.0 → 4.64.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/lib/init-package-json.js +2 -4
- package/package.json +3 -3
package/lib/init-package-json.js
CHANGED
|
@@ -45,8 +45,7 @@ module.exports = async ( {
|
|
|
45
45
|
build:
|
|
46
46
|
( isDynamicVariant
|
|
47
47
|
? 'wp-scripts build --webpack-copy-php'
|
|
48
|
-
: 'wp-scripts build' ) +
|
|
49
|
-
' && wp-scripts build-blocks-manifest',
|
|
48
|
+
: 'wp-scripts build' ) + ' --blocks-manifest',
|
|
50
49
|
format: 'wp-scripts format',
|
|
51
50
|
'lint:css': 'wp-scripts lint-style',
|
|
52
51
|
'lint:js': 'wp-scripts lint-js',
|
|
@@ -55,8 +54,7 @@ module.exports = async ( {
|
|
|
55
54
|
start:
|
|
56
55
|
( isDynamicVariant
|
|
57
56
|
? 'wp-scripts start --webpack-copy-php'
|
|
58
|
-
: 'wp-scripts start' ) +
|
|
59
|
-
' && wp-scripts build-blocks-manifest',
|
|
57
|
+
: 'wp-scripts start' ) + ' --blocks-manifest',
|
|
60
58
|
} ),
|
|
61
59
|
...( wpEnv && { env: 'wp-env' } ),
|
|
62
60
|
...customScripts,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/create-block",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.64.0",
|
|
4
4
|
"description": "Generates PHP, JS and CSS code for registering a block for a WordPress plugin.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@inquirer/prompts": "^7.2.0",
|
|
35
|
-
"@wordpress/lazy-import": "^2.
|
|
35
|
+
"@wordpress/lazy-import": "^2.21.0",
|
|
36
36
|
"chalk": "^4.0.0",
|
|
37
37
|
"change-case": "^4.1.2",
|
|
38
38
|
"check-node-version": "^4.1.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "104af00f9abcd7a4d36b87e648f148c72cc4ea5f"
|
|
52
52
|
}
|