@module-federation/runtime 0.1.3 → 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/README.md +5 -784
- package/package.json +8 -8
- package/dist/LICENSE +0 -21
- package/dist/helpers.cjs.d.ts +0 -2
- package/dist/helpers.cjs.js +0 -34
- package/dist/helpers.esm.js +0 -32
- package/dist/index.cjs.d.ts +0 -1
- package/dist/index.cjs.js +0 -1767
- package/dist/index.esm.js +0 -1747
- package/dist/package.json +0 -50
- package/dist/share.cjs.js +0 -843
- package/dist/share.esm.js +0 -806
- package/dist/src/constant.d.ts +0 -2
- package/dist/src/core.d.ts +0 -164
- package/dist/src/global.d.ts +0 -43
- package/dist/src/helpers.d.ts +0 -33
- package/dist/src/index.d.ts +0 -15
- package/dist/src/module/index.d.ts +0 -19
- package/dist/src/plugins/generate-preload-assets.d.ts +0 -8
- package/dist/src/plugins/snapshot/SnapshotHandler.d.ts +0 -44
- package/dist/src/plugins/snapshot/index.d.ts +0 -5
- package/dist/src/type/config.d.ts +0 -100
- package/dist/src/type/index.d.ts +0 -3
- package/dist/src/type/plugin.d.ts +0 -20
- package/dist/src/type/preload.d.ts +0 -26
- package/dist/src/types.d.ts +0 -1
- package/dist/src/utils/env.d.ts +0 -4
- package/dist/src/utils/hooks/asyncHook.d.ts +0 -6
- package/dist/src/utils/hooks/asyncWaterfallHooks.d.ts +0 -10
- package/dist/src/utils/hooks/index.d.ts +0 -6
- package/dist/src/utils/hooks/pluginSystem.d.ts +0 -15
- package/dist/src/utils/hooks/syncHook.d.ts +0 -12
- package/dist/src/utils/hooks/syncWaterfallHook.d.ts +0 -9
- package/dist/src/utils/index.d.ts +0 -6
- package/dist/src/utils/load.d.ts +0 -18
- package/dist/src/utils/logger.d.ts +0 -3
- package/dist/src/utils/manifest.d.ts +0 -7
- package/dist/src/utils/plugin.d.ts +0 -4
- package/dist/src/utils/preload.d.ts +0 -6
- package/dist/src/utils/semver/compare.d.ts +0 -9
- package/dist/src/utils/semver/constants.d.ts +0 -10
- package/dist/src/utils/semver/index.d.ts +0 -2
- package/dist/src/utils/semver/parser.d.ts +0 -9
- package/dist/src/utils/semver/utils.d.ts +0 -11
- package/dist/src/utils/share.d.ts +0 -16
- package/dist/src/utils/tool.d.ts +0 -12
- package/dist/types.cjs.d.ts +0 -1
- package/dist/types.cjs.js +0 -2
- package/dist/types.esm.js +0 -1
package/dist/package.json
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@module-federation/runtime",
|
|
3
|
-
"version": "0.1.3",
|
|
4
|
-
"author": "zhouxiao <codingzx@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
|
-
"files": [
|
|
13
|
-
"dist/",
|
|
14
|
-
"README.md"
|
|
15
|
-
],
|
|
16
|
-
"exports": {
|
|
17
|
-
".": {
|
|
18
|
-
"import": "./dist/index.esm.js",
|
|
19
|
-
"require": "./dist/index.cjs.js",
|
|
20
|
-
"types": "./dist/index.cjs.d.ts"
|
|
21
|
-
},
|
|
22
|
-
"./helpers": {
|
|
23
|
-
"import": "./dist/helpers.esm.js",
|
|
24
|
-
"require": "./dist/helpers.cjs.js",
|
|
25
|
-
"types": "./dist/helpers.cjs.d.ts"
|
|
26
|
-
},
|
|
27
|
-
"./types": {
|
|
28
|
-
"import": "./dist/types.esm.js",
|
|
29
|
-
"require": "./dist/types.cjs.js",
|
|
30
|
-
"types": "./dist/types.cjs.d.ts"
|
|
31
|
-
},
|
|
32
|
-
"./*": "./*"
|
|
33
|
-
},
|
|
34
|
-
"typesVersions": {
|
|
35
|
-
"*": {
|
|
36
|
-
".": [
|
|
37
|
-
"./dist/index.cjs.d.ts"
|
|
38
|
-
],
|
|
39
|
-
"helpers": [
|
|
40
|
-
"./dist/helpers.cjs.d.ts"
|
|
41
|
-
],
|
|
42
|
-
"types": [
|
|
43
|
-
"./dist/types.cjs.d.ts"
|
|
44
|
-
]
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@module-federation/sdk": "workspace:*"
|
|
49
|
-
}
|
|
50
|
-
}
|