zephyr-xpack-internal 0.0.0-canary-20250114203035 → 0.0.0-canary-20250117215906
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/dist/federation-dashboard-legacy/get-build-stats.d.ts +2 -2
- package/dist/federation-dashboard-legacy/get-build-stats.js +9 -2
- package/dist/federation-dashboard-legacy/get-build-stats.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/convert-to-graph.d.ts +33 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/convert-to-graph.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-one.d.ts +18 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-one.js +18 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-one.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-two.d.ts +25 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-two.js +25 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/module-part-two.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/process-function-remotes.d.ts +15 -0
- package/dist/federation-dashboard-legacy/utils/convert-to-graph/process-function-remotes.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/FederationDashboardPlugin.d.ts +47 -2
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/FederationDashboardPlugin.js +59 -7
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/FederationDashboardPlugin.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/add-runtime-requirement-to-promise-external.js +19 -2
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/add-runtime-requirement-to-promise-external.js.map +1 -1
- package/dist/federation-dashboard-legacy/utils/federation-dashboard-plugin/federation-dashboard-plugin-options.d.ts +2 -0
- package/dist/hooks/ze-setup-build-steps-logging.d.ts +19 -0
- package/dist/hooks/ze-setup-build-steps-logging.js +26 -0
- package/dist/hooks/ze-setup-build-steps-logging.js.map +1 -0
- package/dist/hooks/ze-setup-ze-deploy.d.ts +33 -0
- package/dist/hooks/ze-setup-ze-deploy.js +31 -0
- package/dist/hooks/ze-setup-ze-deploy.js.map +1 -0
- package/dist/index.d.ts +5 -2
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +0 -1
- package/dist/xpack-extract/create-mf-runtime-code.d.ts +2 -1
- package/dist/xpack-extract/create-mf-runtime-code.js +4 -3
- package/dist/xpack-extract/create-mf-runtime-code.js.map +1 -1
- package/dist/xpack-extract/extract-federated-dependency-pairs.js +13 -15
- package/dist/xpack-extract/extract-federated-dependency-pairs.js.map +1 -1
- package/dist/xpack-extract/index.d.ts +1 -1
- package/dist/xpack-extract/index.js +2 -1
- package/dist/xpack-extract/index.js.map +1 -1
- package/dist/xpack-extract/iterate-federated-remote-config.d.ts +2 -0
- package/dist/xpack-extract/iterate-federated-remote-config.js +26 -0
- package/dist/xpack-extract/iterate-federated-remote-config.js.map +1 -0
- package/dist/xpack-extract/iterate-federation-config.d.ts +1 -1
- package/dist/xpack-extract/iterate-federation-config.js +8 -5
- package/dist/xpack-extract/iterate-federation-config.js.map +1 -1
- package/dist/xpack-extract/make-copy-of-module-federation-options.js +4 -2
- package/dist/xpack-extract/make-copy-of-module-federation-options.js.map +1 -1
- package/dist/xpack-extract/mut-webpack-federated-remotes-config.d.ts +2 -1
- package/dist/xpack-extract/mut-webpack-federated-remotes-config.js +23 -9
- package/dist/xpack-extract/mut-webpack-federated-remotes-config.js.map +1 -1
- package/dist/xpack-extract/ze-xpack-upload-agent.d.ts +16 -0
- package/dist/xpack-extract/ze-xpack-upload-agent.js +42 -0
- package/dist/xpack-extract/ze-xpack-upload-agent.js.map +1 -0
- package/dist/xpack.types.d.ts +31 -7
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zephyr-xpack-internal",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20250117215906",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,9 +9,8 @@
|
|
|
9
9
|
"@module-federation/automatic-vendor-federation": "1.2.1",
|
|
10
10
|
"is-ci": "^3.0.1",
|
|
11
11
|
"tslib": "^2.3.0",
|
|
12
|
-
"
|
|
13
|
-
"zephyr-
|
|
14
|
-
"zephyr-edge-contract": "0.0.0-canary-20250114203035"
|
|
12
|
+
"zephyr-agent": "0.0.0-canary-20250117215906",
|
|
13
|
+
"zephyr-edge-contract": "0.0.0-canary-20250117215906"
|
|
15
14
|
},
|
|
16
15
|
"devDependencies": {
|
|
17
16
|
"@types/is-ci": "^3.0.4",
|