@wp-playground/blueprints 3.1.20 → 3.1.21

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/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { ReadableFilesystemBackend } from '@wp-playground/storage';
2
2
  import type { BlueprintV1, BlueprintV1Declaration, ExtraLibrary, PHPConstants } from './v1/types';
3
3
  import type { BlueprintV2, BlueprintV2Declaration } from './v2/blueprint-v2-declaration';
4
- import type { SupportedPHPVersion } from '@php-wasm/universal';
4
+ import type { AllPHPVersion } from '@php-wasm/universal';
5
5
  /**
6
6
  * A filesystem structure containing a /blueprint.json file and any
7
7
  * resources referenced by that blueprint.
@@ -10,7 +10,7 @@ export type BlueprintBundle = ReadableFilesystemBackend;
10
10
  export type BlueprintDeclaration = BlueprintV1Declaration | BlueprintV2Declaration;
11
11
  export type Blueprint = BlueprintV1 | BlueprintV2;
12
12
  export interface RuntimeConfiguration {
13
- phpVersion: SupportedPHPVersion;
13
+ phpVersion: AllPHPVersion;
14
14
  wpVersion: string;
15
15
  intl: boolean;
16
16
  networking: boolean;
@@ -1,6 +1,6 @@
1
1
  import { ProgressTracker } from '@php-wasm/progress';
2
2
  import { Semaphore } from '@php-wasm/util';
3
- import type { SupportedPHPVersion, UniversalPHP } from '@php-wasm/universal';
3
+ import type { AllPHPVersion, UniversalPHP } from '@php-wasm/universal';
4
4
  import type { Step, StepDefinition } from '../steps';
5
5
  import type { BlueprintV1Declaration, ExtraLibrary, StreamBundledFile, BlueprintV1 } from './types';
6
6
  import type { BlueprintBundle } from '../types';
@@ -30,7 +30,7 @@ export type CompiledV1Step = (php: UniversalPHP) => Promise<void> | void;
30
30
  export interface CompiledBlueprintV1 {
31
31
  /** The requested versions of PHP and WordPress for the blueprint */
32
32
  versions: {
33
- php: SupportedPHPVersion;
33
+ php: AllPHPVersion;
34
34
  wp: string;
35
35
  };
36
36
  features: {
package/lib/v1/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { SupportedPHPVersion } from '@php-wasm/universal';
1
+ import type { AllPHPVersion } from '@php-wasm/universal';
2
2
  import type { StepDefinition } from '../steps';
3
3
  import type { FileReference } from './resources';
4
4
  import type { StreamedFile } from '@php-wasm/stream-compression';
@@ -12,7 +12,7 @@ export type BlueprintV1 = BlueprintV1Declaration | BlueprintBundle;
12
12
  * Includes deprecated versions (7.2, 7.3) which are automatically
13
13
  * upgraded to 7.4 during compilation.
14
14
  */
15
- export type BlueprintPHPVersion = SupportedPHPVersion | '7.2' | '7.3';
15
+ export type BlueprintPHPVersion = AllPHPVersion | '7.2' | '7.3';
16
16
  /**
17
17
  * The Blueprint declaration, typically stored in a blueprint.json file.
18
18
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/blueprints",
3
- "version": "3.1.20",
3
+ "version": "3.1.21",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./index.js",
@@ -25,7 +25,7 @@
25
25
  "access": "public",
26
26
  "directory": "../../../dist/packages/playground/blueprints"
27
27
  },
28
- "gitHead": "98cfca0a050ef1dacce25710d6ebdf816e80b764",
28
+ "gitHead": "5864051cbf4c2a55656112d99a3f1b076bcd67cd",
29
29
  "engines": {
30
30
  "node": ">=20.10.0",
31
31
  "npm": ">=10.2.3"
@@ -53,17 +53,17 @@
53
53
  "wasm-feature-detect": "1.8.0",
54
54
  "ws": "8.18.0",
55
55
  "yargs": "17.7.2",
56
- "@wp-playground/storage": "3.1.20",
57
- "@php-wasm/util": "3.1.20",
58
- "@wp-playground/common": "3.1.20",
59
- "@php-wasm/universal": "3.1.20",
60
- "@php-wasm/node": "3.1.20",
61
- "@wp-playground/wordpress": "3.1.20",
62
- "@php-wasm/logger": "3.1.20",
63
- "@php-wasm/scopes": "3.1.20",
64
- "@php-wasm/progress": "3.1.20",
65
- "@php-wasm/stream-compression": "3.1.20",
66
- "@php-wasm/web-service-worker": "3.1.20"
56
+ "@wp-playground/storage": "3.1.21",
57
+ "@php-wasm/util": "3.1.21",
58
+ "@wp-playground/common": "3.1.21",
59
+ "@php-wasm/universal": "3.1.21",
60
+ "@php-wasm/node": "3.1.21",
61
+ "@wp-playground/wordpress": "3.1.21",
62
+ "@php-wasm/logger": "3.1.21",
63
+ "@php-wasm/scopes": "3.1.21",
64
+ "@php-wasm/progress": "3.1.21",
65
+ "@php-wasm/stream-compression": "3.1.21",
66
+ "@php-wasm/web-service-worker": "3.1.21"
67
67
  },
68
68
  "packageManager": "npm@10.9.2",
69
69
  "overrides": {