@wp-playground/blueprints 3.0.12 → 3.0.14
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/blueprint-schema-validator.js +41 -1
- package/blueprint-schema.json +4 -0
- package/index.cjs +9 -9
- package/index.cjs.map +1 -1
- package/index.js +565 -518
- package/index.js.map +1 -1
- package/lib/v1/resources.d.ts +6 -0
- package/package.json +13 -13
package/lib/v1/resources.d.ts
CHANGED
|
@@ -51,6 +51,8 @@ export type GitDirectoryReference = {
|
|
|
51
51
|
refType?: GitDirectoryRefType;
|
|
52
52
|
/** The path to the directory in the git repository. Defaults to the repo root. */
|
|
53
53
|
path?: string;
|
|
54
|
+
/** When true, include a `.git` directory with Git metadata (experimental). */
|
|
55
|
+
'.git'?: boolean;
|
|
54
56
|
};
|
|
55
57
|
export interface Directory {
|
|
56
58
|
files: FileTree;
|
|
@@ -207,6 +209,10 @@ export declare class GitDirectoryResource extends Resource<Directory> {
|
|
|
207
209
|
name: string;
|
|
208
210
|
files: Record<string, any>;
|
|
209
211
|
}>;
|
|
212
|
+
/**
|
|
213
|
+
* Generate a nice, non-empty filename – the installPlugin step depends on it.
|
|
214
|
+
*/
|
|
215
|
+
get filename(): string;
|
|
210
216
|
/** @inheritDoc */
|
|
211
217
|
get name(): string;
|
|
212
218
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wp-playground/blueprints",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.14",
|
|
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": "
|
|
24
|
+
"gitHead": "0e5227cd89018aaa7f730be5b90bda4cc43f2c41",
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20.18.3",
|
|
27
27
|
"npm": ">=10.1.0"
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"wasm-feature-detect": "1.8.0",
|
|
47
47
|
"ws": "8.18.1",
|
|
48
48
|
"yargs": "17.7.2",
|
|
49
|
-
"@php-wasm/node-polyfills": "3.0.
|
|
50
|
-
"@wp-playground/storage": "3.0.
|
|
51
|
-
"@wp-playground/common": "3.0.
|
|
52
|
-
"@php-wasm/universal": "3.0.
|
|
53
|
-
"@php-wasm/util": "3.0.
|
|
54
|
-
"@php-wasm/node": "3.0.
|
|
55
|
-
"@wp-playground/wordpress": "3.0.
|
|
56
|
-
"@php-wasm/logger": "3.0.
|
|
57
|
-
"@php-wasm/progress": "3.0.
|
|
58
|
-
"@php-wasm/stream-compression": "3.0.
|
|
59
|
-
"@php-wasm/web": "3.0.
|
|
49
|
+
"@php-wasm/node-polyfills": "3.0.14",
|
|
50
|
+
"@wp-playground/storage": "3.0.14",
|
|
51
|
+
"@wp-playground/common": "3.0.14",
|
|
52
|
+
"@php-wasm/universal": "3.0.14",
|
|
53
|
+
"@php-wasm/util": "3.0.14",
|
|
54
|
+
"@php-wasm/node": "3.0.14",
|
|
55
|
+
"@wp-playground/wordpress": "3.0.14",
|
|
56
|
+
"@php-wasm/logger": "3.0.14",
|
|
57
|
+
"@php-wasm/progress": "3.0.14",
|
|
58
|
+
"@php-wasm/stream-compression": "3.0.14",
|
|
59
|
+
"@php-wasm/web": "3.0.14"
|
|
60
60
|
},
|
|
61
61
|
"packageManager": "npm@10.9.2",
|
|
62
62
|
"overrides": {
|