@module-federation/runtime-tools 0.1.4 → 0.1.5
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 +10 -0
- package/package.json +3 -3
- package/project.json +1 -1
- package/dist/index.cjs.d.ts +0 -2
- package/dist/index.cjs.js +0 -35
- package/dist/index.esm.js +0 -3
- package/dist/package.json +0 -47
- package/dist/runtime.cjs.d.ts +0 -1
- package/dist/runtime.cjs.js +0 -14
- package/dist/runtime.esm.js +0 -1
- package/dist/src/index.d.ts +0 -3
- package/dist/src/runtime.d.ts +0 -1
- package/dist/src/webpack-bundler-runtime.d.ts +0 -1
- package/dist/webpack-bundler-runtime.cjs.d.ts +0 -2
- package/dist/webpack-bundler-runtime.cjs.js +0 -11
- package/dist/webpack-bundler-runtime.esm.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [876a4ff]
|
|
8
|
+
- Updated dependencies [f26aa2d]
|
|
9
|
+
- Updated dependencies [1a9c6e7]
|
|
10
|
+
- @module-federation/runtime@0.1.5
|
|
11
|
+
- @module-federation/webpack-bundler-runtime@0.1.5
|
|
12
|
+
|
|
3
13
|
## 0.1.4
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
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.5",
|
|
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.5",
|
|
45
|
+
"@module-federation/webpack-bundler-runtime": "0.1.5"
|
|
46
46
|
}
|
|
47
47
|
}
|
package/project.json
CHANGED
package/dist/index.cjs.d.ts
DELETED
package/dist/index.cjs.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
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
|
-
});
|
package/dist/index.esm.js
DELETED
package/dist/package.json
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@module-federation/runtime-tools",
|
|
3
|
-
"version": "0.1.4",
|
|
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
|
-
}
|
package/dist/runtime.cjs.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./src/runtime";
|
package/dist/runtime.cjs.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
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
|
-
});
|
package/dist/runtime.esm.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@module-federation/runtime';
|
package/dist/src/index.d.ts
DELETED
package/dist/src/runtime.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@module-federation/runtime';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from '@module-federation/webpack-bundler-runtime';
|
|
@@ -1,11 +0,0 @@
|
|
|
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"];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from '@module-federation/webpack-bundler-runtime';
|