@wp-playground/blueprints 3.0.2 → 3.0.3
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/index.cjs +38 -38
- package/index.cjs.map +1 -1
- package/index.d.ts +4 -2
- package/index.js +752 -678
- package/index.js.map +1 -1
- package/lib/reflection.d.ts +19 -0
- package/lib/resolve-runtime-configuration.d.ts +2 -0
- package/lib/steps/install-asset.d.ts +1 -1
- package/lib/types.d.ts +10 -1
- package/package.json +13 -13
package/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export type { BlueprintV1, BlueprintV1Declaration, PHPConstants, } from './lib/v1/types';
|
|
2
|
-
export type { Blueprint, BlueprintBundle, BlueprintDeclaration, } from './lib/types';
|
|
1
|
+
export type { BlueprintV1, BlueprintV1Declaration, PHPConstants, ExtraLibrary, } from './lib/v1/types';
|
|
2
|
+
export type { Blueprint, BlueprintBundle, BlueprintDeclaration, RuntimeConfiguration, } from './lib/types';
|
|
3
|
+
export { BlueprintReflection } from './lib/reflection';
|
|
3
4
|
export { getBlueprintDeclaration, isBlueprintBundle, compileBlueprintV1, runBlueprintV1Steps, compileBlueprintV1 as compileBlueprint, runBlueprintV1Steps as runBlueprintSteps, } from './lib/v1/compile';
|
|
4
5
|
export type { CompileBlueprintV1Options, CompiledBlueprintV1, CompiledV1Step, OnStepCompleted, } from './lib/v1/compile';
|
|
5
6
|
export type { CachedResource, CorePluginReference, CorePluginResource, CoreThemeReference, CoreThemeResource, FetchResource, FileReference, LiteralReference, LiteralResource, Resource, ResourceDecorator, ResourceTypes, SemaphoreResource, UrlReference, UrlResource, VFSReference, VFSResource, } from './lib/v1/resources';
|
|
@@ -11,6 +12,7 @@ export { runBlueprintV2 } from './lib/v2/run-blueprint-v2';
|
|
|
11
12
|
export type { BlueprintMessage } from './lib/v2/run-blueprint-v2';
|
|
12
13
|
export { resolveRemoteBlueprint } from './lib/resolve-remote-blueprint';
|
|
13
14
|
export { wpContentFilesExcludedFromExport } from './lib/utils/wp-content-files-excluded-from-exports';
|
|
15
|
+
export { resolveRuntimeConfiguration } from './lib/resolve-runtime-configuration';
|
|
14
16
|
/**
|
|
15
17
|
* @deprecated This function is a no-op. Playground no longer uses a proxy to download plugins and themes.
|
|
16
18
|
* To be removed in v0.3.0
|