zephyr-edge-contract 1.0.2 → 1.0.3-next.1
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.
|
@@ -29,6 +29,10 @@ export interface ZephyrPluginOptions {
|
|
|
29
29
|
remotes?: Record<string, string>;
|
|
30
30
|
shared?: Record<string, unknown>;
|
|
31
31
|
runtimePlugins?: string[] | undefined;
|
|
32
|
+
manifest?: boolean | {
|
|
33
|
+
fileName?: string;
|
|
34
|
+
filePath?: string;
|
|
35
|
+
};
|
|
32
36
|
};
|
|
33
37
|
target?: 'ios' | 'android' | 'web' | undefined;
|
|
34
38
|
wait_for_index_html?: boolean;
|
|
@@ -11,6 +11,11 @@ export interface ZephyrBuildStats {
|
|
|
11
11
|
posted?: Date;
|
|
12
12
|
/** Default to `remoteEntry.js` unless user defines it */
|
|
13
13
|
remote: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* Relative path to the MF2 manifest (default `mf-manifest.json`). Undefined when
|
|
16
|
+
* `manifest: false`.
|
|
17
|
+
*/
|
|
18
|
+
mf_manifest?: string;
|
|
14
19
|
/** @deprecated - Never use meta, metadata and other senseless data aggregator names */
|
|
15
20
|
metadata: unknown;
|
|
16
21
|
/**
|
|
@@ -144,6 +149,7 @@ declare enum DeploymentIntegrationPlatform {
|
|
|
144
149
|
export interface ZephyrDependency {
|
|
145
150
|
application_uid: string;
|
|
146
151
|
remote_entry_url: string;
|
|
152
|
+
manifest_url?: string;
|
|
147
153
|
default_url: string;
|
|
148
154
|
name: string;
|
|
149
155
|
library_type: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zephyr-build-stats.js","sourceRoot":"","sources":["../../src/lib/zephyr-build-stats.ts"],"names":[],"mappings":";AAAA,0BAA0B;;
|
|
1
|
+
{"version":3,"file":"zephyr-build-stats.js","sourceRoot":"","sources":["../../src/lib/zephyr-build-stats.ts"],"names":[],"mappings":";AAAA,0BAA0B;;AAsJ1B,IAAK,6BAMJ;AAND,WAAK,6BAA6B;IAChC,0DAAyB,CAAA;IACzB,4CAAW,CAAA;IACX,oDAAmB,CAAA;IACnB,gDAAe,CAAA;IACf,4CAAW,CAAA;AACb,CAAC,EANI,6BAA6B,KAA7B,6BAA6B,QAMjC"}
|
package/dist/package.json
CHANGED