@wp-playground/blueprints 0.6.7 → 0.6.9

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.
@@ -6,8 +6,7 @@ import { StepHandler } from '.';
6
6
  * <code>
7
7
  * {
8
8
  * "step": "activateTheme",
9
- * "pluginName": "Storefront",
10
- * "pluginPath": "/wordpress/wp-content/themes/storefront"
9
+ * "themeFolderName": "storefront"
11
10
  * }
12
11
  * </code>
13
12
  */
@@ -7,7 +7,7 @@ import { StepHandler } from '.';
7
7
  *
8
8
  * <code>
9
9
  * {
10
- * "step": "wpCLI",
10
+ * "step": "wp-cli",
11
11
  * "command": "wp post create --post_title='Test post' --post_excerpt='Some content'"
12
12
  * }
13
13
  * </code>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/blueprints",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./index.js",
@@ -21,7 +21,7 @@
21
21
  "access": "public",
22
22
  "directory": "../../../dist/packages/playground/blueprints"
23
23
  },
24
- "gitHead": "c4c52563eee8997b94cd4a0875e10fb5d8ccda42",
24
+ "gitHead": "f6b98ad6d05617ee8cb1234c21318fdde17a6e56",
25
25
  "engines": {
26
26
  "node": ">=18.18.2",
27
27
  "npm": ">=8.11.0"
package/schema-readme.md CHANGED
@@ -5,5 +5,5 @@ Whenever the types are modified, the schema needs to be rebuilt using
5
5
  `nx build playground-blueprints` and then committed to the repository.
6
6
 
7
7
  Unfortunately, it is not auto-rebuilt in `npm run dev` mode as the
8
- `dts-bundle-generator` utility we use for type rollyps does not support
8
+ `dts-bundle-generator` utility we use for type rollups does not support
9
9
  watching for changes.