@wp-playground/blueprints 0.6.15 → 0.7.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.
@@ -3,7 +3,6 @@ export { activateTheme } from './activate-theme';
3
3
  export { runPHP } from './run-php';
4
4
  export { runPHPWithOptions } from './run-php-with-options';
5
5
  export { runSql } from './run-sql';
6
- export { setPhpIniEntry } from './set-php-ini-entry';
7
6
  export { request } from './request';
8
7
  export { enableMultisite } from './enable-multisite';
9
8
  export { cp } from './cp';
@@ -14,7 +14,6 @@ import { RmdirStep } from './rmdir';
14
14
  import { RunSqlStep } from './run-sql';
15
15
  import { MkdirStep } from './mkdir';
16
16
  import { MvStep } from './mv';
17
- import { SetPhpIniEntryStep } from './set-php-ini-entry';
18
17
  import { RunPHPStep } from './run-php';
19
18
  import { RunPHPWithOptionsStep } from './run-php-with-options';
20
19
  import { RequestStep } from './request';
@@ -38,8 +37,8 @@ export { wpContentFilesExcludedFromExport } from '../utils/wp-content-files-excl
38
37
  * If you add a step here, make sure to also
39
38
  * add it to the exports below.
40
39
  */
41
- export type GenericStep<Resource> = ActivatePluginStep | ActivateThemeStep | CpStep | DefineWpConfigConstsStep | DefineSiteUrlStep | EnableMultisiteStep | ImportWxrStep<Resource> | ImportWordPressFilesStep<Resource> | InstallPluginStep<Resource> | InstallThemeStep<Resource> | LoginStep | MkdirStep | MvStep | RequestStep | RmStep | RmdirStep | RunPHPStep | RunPHPWithOptionsStep | RunWpInstallationWizardStep | RunSqlStep<Resource> | SetPhpIniEntryStep | SetSiteOptionsStep | UnzipStep<Resource> | UpdateUserMetaStep | WriteFileStep<Resource> | WPCLIStep;
42
- export type { ActivatePluginStep, ActivateThemeStep, CpStep, DefineWpConfigConstsStep, DefineSiteUrlStep, EnableMultisiteStep, ImportWxrStep, ImportWordPressFilesStep, InstallPluginStep, InstallPluginOptions, InstallThemeStep, InstallThemeOptions, LoginStep, MkdirStep, MvStep, RequestStep, RmStep, RmdirStep, RunPHPStep, RunPHPWithOptionsStep, RunWpInstallationWizardStep, RunSqlStep, WordPressInstallationOptions, SetPhpIniEntryStep, SetSiteOptionsStep, UnzipStep, UpdateUserMetaStep, WriteFileStep, WPCLIStep, };
40
+ export type GenericStep<Resource> = ActivatePluginStep | ActivateThemeStep | CpStep | DefineWpConfigConstsStep | DefineSiteUrlStep | EnableMultisiteStep | ImportWxrStep<Resource> | ImportWordPressFilesStep<Resource> | InstallPluginStep<Resource> | InstallThemeStep<Resource> | LoginStep | MkdirStep | MvStep | RequestStep | RmStep | RmdirStep | RunPHPStep | RunPHPWithOptionsStep | RunWpInstallationWizardStep | RunSqlStep<Resource> | SetSiteOptionsStep | UnzipStep<Resource> | UpdateUserMetaStep | WriteFileStep<Resource> | WPCLIStep;
41
+ export type { ActivatePluginStep, ActivateThemeStep, CpStep, DefineWpConfigConstsStep, DefineSiteUrlStep, EnableMultisiteStep, ImportWxrStep, ImportWordPressFilesStep, InstallPluginStep, InstallPluginOptions, InstallThemeStep, InstallThemeOptions, LoginStep, MkdirStep, MvStep, RequestStep, RmStep, RmdirStep, RunPHPStep, RunPHPWithOptionsStep, RunWpInstallationWizardStep, RunSqlStep, WordPressInstallationOptions, SetSiteOptionsStep, UnzipStep, UpdateUserMetaStep, WriteFileStep, WPCLIStep, };
43
42
  /**
44
43
  * Progress reporting details.
45
44
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/blueprints",
3
- "version": "0.6.15",
3
+ "version": "0.7.0",
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": "e05126da329a26535905b0ab65415d20118f0197",
24
+ "gitHead": "c5eba3d709f2821c4303521e8c81b962e3bcca23",
25
25
  "engines": {
26
26
  "node": ">=18.18.0",
27
27
  "npm": ">=8.11.0"
@@ -1,25 +0,0 @@
1
- import { StepHandler } from '.';
2
- /**
3
- * @inheritDoc setPhpIniEntry
4
- * @hasRunnableExample
5
- * @example
6
- *
7
- * <code>
8
- * {
9
- * "step": "setPhpIniEntry",
10
- * "key": "display_errors",
11
- * "value": "1"
12
- * }
13
- * </code>
14
- */
15
- export interface SetPhpIniEntryStep {
16
- step: 'setPhpIniEntry';
17
- /** Entry name e.g. "display_errors" */
18
- key: string;
19
- /** Entry value as a string e.g. "1" */
20
- value: string;
21
- }
22
- /**
23
- * Sets a PHP ini entry.
24
- */
25
- export declare const setPhpIniEntry: StepHandler<SetPhpIniEntryStep>;