@wp-playground/remote 3.1.34 → 3.1.36

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.
@@ -21,8 +21,8 @@ export type WorkerBootOptions = {
21
21
  extensions?: PHPWebExtension[];
22
22
  withNetworking: boolean;
23
23
  mounts?: Array<MountDescriptor>;
24
+ /** @deprecated Use `wordpressInstallMode` instead. */
24
25
  shouldInstallWordPress?: boolean;
25
- shouldBootWordPress?: boolean;
26
26
  corsProxyUrl?: string;
27
27
  /** When true, skip default WP install and run Blueprints v2 in the worker */
28
28
  experimentalBlueprintsV2Runner?: boolean;
@@ -30,7 +30,7 @@ export type WorkerBootOptions = {
30
30
  blueprint?: BlueprintDeclaration;
31
31
  /**
32
32
  * How to handle WordPress installation.
33
- * Defaults to 'install-from-existing-files-if-needed'.
33
+ * Defaults to `download-and-install`.
34
34
  */
35
35
  wordpressInstallMode?: WordPressInstallMode;
36
36
  /**
@@ -87,6 +87,7 @@ export declare abstract class PlaygroundWorkerEndpoint extends PHPWorker {
87
87
  all: {
88
88
  trunk: string;
89
89
  beta: string;
90
+ "7.0": string;
90
91
  "6.9": string;
91
92
  "6.8": string;
92
93
  "6.7": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/remote",
3
- "version": "3.1.34",
3
+ "version": "3.1.36",
4
4
  "description": "WordPress Playground remote host",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,5 +25,5 @@
25
25
  "access": "public",
26
26
  "directory": "../../../dist/packages/playground/remote"
27
27
  },
28
- "gitHead": "86daccc84fe31900eb57c4c8e1c3ba21a7ae8d13"
28
+ "gitHead": "371f4fd6f9d56af6fb35b6c2cf0267edaea83755"
29
29
  }