@module-federation/runtime-tools 0.3.5 → 0.5.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/CHANGELOG.md +18 -0
- package/dist/package.json +1 -1
- package/dist/runtime.cjs.js +9 -0
- package/dist/runtime.esm.js +1 -0
- package/dist/src/runtime.d.ts +1 -0
- package/package.json +3 -3
- package/src/runtime.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
## [1.0.1-canary.1](https://github.com/module-federation/core/compare/runtime-1.0.0...runtime-1.0.1-canary.1) (2023-12-06)
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8378a77]
|
|
8
|
+
- Updated dependencies [5c7ac8a]
|
|
9
|
+
- @module-federation/runtime@0.5.0
|
|
10
|
+
- @module-federation/webpack-bundler-runtime@0.5.0
|
|
11
|
+
|
|
12
|
+
## 0.4.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [f2f02c9]
|
|
17
|
+
- Updated dependencies [a6e2bed]
|
|
18
|
+
- @module-federation/runtime@0.4.0
|
|
19
|
+
- @module-federation/webpack-bundler-runtime@0.4.0
|
|
20
|
+
|
|
3
21
|
## 0.3.5
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/package.json
CHANGED
package/dist/runtime.cjs.js
CHANGED
|
@@ -3,9 +3,18 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var runtime = require('@module-federation/runtime');
|
|
6
|
+
var retryPlugin = require('@module-federation/runtime/retry-plugin');
|
|
6
7
|
|
|
8
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
7
9
|
|
|
10
|
+
var retryPlugin__default = /*#__PURE__*/_interopDefaultLegacy(retryPlugin);
|
|
8
11
|
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Object.defineProperty(exports, 'RetryPlugin', {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: function () { return retryPlugin__default["default"]; }
|
|
17
|
+
});
|
|
9
18
|
Object.keys(runtime).forEach(function (k) {
|
|
10
19
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
11
20
|
enumerable: true,
|
package/dist/runtime.esm.js
CHANGED
package/dist/src/runtime.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/runtime-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"author": "zhanghang <hanric.zhang@gmail.com>",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@module-federation/runtime": "0.
|
|
45
|
-
"@module-federation/webpack-bundler-runtime": "0.
|
|
44
|
+
"@module-federation/runtime": "0.5.0",
|
|
45
|
+
"@module-federation/webpack-bundler-runtime": "0.5.0"
|
|
46
46
|
}
|
|
47
47
|
}
|
package/src/runtime.ts
CHANGED