@module-federation/retry-plugin 0.11.4 → 0.13.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.
- package/dist/CHANGELOG.md +17 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/package.json +1 -1
- package/package.json +3 -3
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @module-federation/retry-plugin
|
|
2
2
|
|
|
3
|
+
## 0.13.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 38f324f: Disable live bindings on cjs builds of the runtime packages
|
|
8
|
+
- Updated dependencies [38f324f]
|
|
9
|
+
- @module-federation/sdk@0.13.0
|
|
10
|
+
|
|
11
|
+
## 0.12.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [c399b9a]
|
|
16
|
+
- Updated dependencies [ef96c4d]
|
|
17
|
+
- Updated dependencies [f4fb242]
|
|
18
|
+
- @module-federation/sdk@0.12.0
|
|
19
|
+
|
|
3
20
|
## 0.11.4
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -24,4 +24,4 @@ type RetryPluginParams = {
|
|
|
24
24
|
|
|
25
25
|
declare const RetryPlugin: (params: RetryPluginParams) => FederationRuntimePlugin;
|
|
26
26
|
|
|
27
|
-
export { FetchWithRetryOptions, RetryPlugin, RetryPluginParams, ScriptWithRetryOptions };
|
|
27
|
+
export { type FetchWithRetryOptions, RetryPlugin, type RetryPluginParams, type ScriptWithRetryOptions };
|
package/dist/index.d.ts
CHANGED
|
@@ -24,4 +24,4 @@ type RetryPluginParams = {
|
|
|
24
24
|
|
|
25
25
|
declare const RetryPlugin: (params: RetryPluginParams) => FederationRuntimePlugin;
|
|
26
26
|
|
|
27
|
-
export { FetchWithRetryOptions, RetryPlugin, RetryPluginParams, ScriptWithRetryOptions };
|
|
27
|
+
export { type FetchWithRetryOptions, RetryPlugin, type RetryPluginParams, type ScriptWithRetryOptions };
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/retry-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"author": "danpeen <dapeen.feng@gmail.com>",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@module-federation/runtime": "0.
|
|
36
|
+
"@module-federation/runtime": "0.13.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@module-federation/sdk": "0.
|
|
39
|
+
"@module-federation/sdk": "0.13.0"
|
|
40
40
|
}
|
|
41
41
|
}
|