@module-federation/retry-plugin 0.16.0 → 0.17.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 +6 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/package.json +1 -1
- package/package.json +3 -3
package/dist/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ModuleFederationRuntimePlugin } from '@module-federation/runtime/types';
|
|
2
2
|
|
|
3
3
|
interface FetchWithRetryOptions {
|
|
4
4
|
url?: string;
|
|
@@ -22,6 +22,6 @@ type RetryPluginParams = {
|
|
|
22
22
|
script?: ScriptWithRetryOptions;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
declare const RetryPlugin: (params: RetryPluginParams) =>
|
|
25
|
+
declare const RetryPlugin: (params: RetryPluginParams) => ModuleFederationRuntimePlugin;
|
|
26
26
|
|
|
27
27
|
export { type FetchWithRetryOptions, RetryPlugin, type RetryPluginParams, type ScriptWithRetryOptions };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ModuleFederationRuntimePlugin } from '@module-federation/runtime/types';
|
|
2
2
|
|
|
3
3
|
interface FetchWithRetryOptions {
|
|
4
4
|
url?: string;
|
|
@@ -22,6 +22,6 @@ type RetryPluginParams = {
|
|
|
22
22
|
script?: ScriptWithRetryOptions;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
declare const RetryPlugin: (params: RetryPluginParams) =>
|
|
25
|
+
declare const RetryPlugin: (params: RetryPluginParams) => ModuleFederationRuntimePlugin;
|
|
26
26
|
|
|
27
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.17.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.17.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@module-federation/sdk": "0.
|
|
39
|
+
"@module-federation/sdk": "0.17.0"
|
|
40
40
|
}
|
|
41
41
|
}
|