@module-federation/runtime-tools 0.1.5 → 0.1.6
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 +9 -0
- package/dist/index.cjs.d.ts +2 -0
- package/dist/index.cjs.js +35 -0
- package/dist/index.esm.js +3 -0
- package/dist/package.json +47 -0
- package/dist/runtime.cjs.d.ts +1 -0
- package/dist/runtime.cjs.js +14 -0
- package/dist/runtime.esm.js +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/runtime.d.ts +1 -0
- package/dist/src/webpack-bundler-runtime.d.ts +1 -0
- package/dist/webpack-bundler-runtime.cjs.d.ts +2 -0
- package/dist/webpack-bundler-runtime.cjs.js +11 -0
- package/dist/webpack-bundler-runtime.esm.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## [1.0.1-canary.1](https://github.com/module-federation/universe/compare/runtime-1.0.0...runtime-1.0.1-canary.1) (2023-12-06)
|
|
2
2
|
|
|
3
|
+
## 0.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 72c7b80: chore: fix release tag
|
|
8
|
+
- Updated dependencies [72c7b80]
|
|
9
|
+
- @module-federation/runtime@0.1.6
|
|
10
|
+
- @module-federation/webpack-bundler-runtime@0.1.6
|
|
11
|
+
|
|
3
12
|
## 0.1.5
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('@module-federation/runtime');
|
|
6
|
+
|
|
7
|
+
function _interopNamespace(e) {
|
|
8
|
+
if (e && e.__esModule) return e;
|
|
9
|
+
var n = Object.create(null);
|
|
10
|
+
if (e) {
|
|
11
|
+
Object.keys(e).forEach(function (k) {
|
|
12
|
+
if (k !== 'default') {
|
|
13
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: function () { return e[k]; }
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n["default"] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var runtime__namespace = /*#__PURE__*/_interopNamespace(runtime);
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
exports["default"] = runtime__namespace;
|
|
30
|
+
Object.keys(runtime).forEach(function (k) {
|
|
31
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return runtime[k]; }
|
|
34
|
+
});
|
|
35
|
+
});
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@module-federation/runtime-tools",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"author": "zhanghang <hanric.zhang@gmail.com>",
|
|
5
|
+
"main": "./index.cjs.js",
|
|
6
|
+
"module": "./index.esm.js",
|
|
7
|
+
"types": "./dist/index.cjs.d.ts",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.cjs.d.ts",
|
|
15
|
+
"import": "./dist/index.esm.js",
|
|
16
|
+
"require": "./dist/index.cjs.js"
|
|
17
|
+
},
|
|
18
|
+
"./runtime": {
|
|
19
|
+
"types": "./dist/runtime.cjs.d.ts",
|
|
20
|
+
"import": "./dist/runtime.esm.js",
|
|
21
|
+
"require": "./dist/runtime.cjs.js"
|
|
22
|
+
},
|
|
23
|
+
"./webpack-bundler-runtime": {
|
|
24
|
+
"types": "./dist/webpack-bundler-runtime.cjs.d.ts",
|
|
25
|
+
"import": "./dist/webpack-bundler-runtime.esm.js",
|
|
26
|
+
"require": "./dist/webpack-bundler-runtime.cjs.js"
|
|
27
|
+
},
|
|
28
|
+
"./*": "./*"
|
|
29
|
+
},
|
|
30
|
+
"typesVersions": {
|
|
31
|
+
"*": {
|
|
32
|
+
".": [
|
|
33
|
+
"./dist/index.cjs.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"runtime": [
|
|
36
|
+
"./dist/runtime.cjs.d.ts"
|
|
37
|
+
],
|
|
38
|
+
"webpack-bundler-runtime": [
|
|
39
|
+
"./dist/webpack-bundler-runtime.cjs.d.ts"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@module-federation/runtime": "workspace:*",
|
|
45
|
+
"@module-federation/webpack-bundler-runtime": "workspace:*"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/runtime";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('@module-federation/runtime');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Object.keys(runtime).forEach(function (k) {
|
|
10
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () { return runtime[k]; }
|
|
13
|
+
});
|
|
14
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@module-federation/runtime';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@module-federation/runtime';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '@module-federation/webpack-bundler-runtime';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var webpackBundlerRuntime = require('@module-federation/webpack-bundler-runtime');
|
|
4
|
+
|
|
5
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
6
|
+
|
|
7
|
+
var webpackBundlerRuntime__default = /*#__PURE__*/_interopDefaultLegacy(webpackBundlerRuntime);
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
module.exports = webpackBundlerRuntime__default["default"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '@module-federation/webpack-bundler-runtime';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/runtime-tools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
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.1.
|
|
45
|
-
"@module-federation/webpack-bundler-runtime": "0.1.
|
|
44
|
+
"@module-federation/runtime": "0.1.6",
|
|
45
|
+
"@module-federation/webpack-bundler-runtime": "0.1.6"
|
|
46
46
|
}
|
|
47
47
|
}
|