@module-federation/dts-plugin 0.1.19 → 0.1.21
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 +27 -0
- package/dist/{DtsWorker-d731dc2b.d.ts → DtsWorker-7113d2b0.d.ts} +6 -3
- package/dist/core.d.mts +85 -0
- package/dist/core.d.ts +5 -5
- package/dist/core.js +1105 -1008
- package/dist/dynamic-remote-type-hints-plugin.d.mts +5 -0
- package/dist/dynamic-remote-type-hints-plugin.d.ts +5 -0
- package/dist/dynamic-remote-type-hints-plugin.js +198 -0
- package/dist/esm/chunk-55BKSNZ4.js +2372 -0
- package/dist/esm/chunk-G7ONFBMA.js +24 -0
- package/dist/esm/chunk-MQRIERJP.js +236 -0
- package/dist/esm/core.js +44 -0
- package/dist/esm/dynamic-remote-type-hints-plugin.js +73 -0
- package/dist/esm/fork-dev-worker.js +141 -0
- package/dist/esm/fork-generate-dts.js +26 -0
- package/dist/esm/index.js +406 -0
- package/dist/esm/start-broker.js +36 -0
- package/dist/fork-dev-worker.d.ts +15 -0
- package/dist/fork-dev-worker.js +2543 -0
- package/dist/{forkGenerateDts.d.ts → fork-generate-dts.d.mts} +1 -1
- package/dist/fork-generate-dts.d.ts +9 -0
- package/dist/fork-generate-dts.js +1902 -0
- package/dist/iife/launch-web-client.js +91 -42
- package/dist/index.d.mts +10 -0
- package/dist/index.js +1287 -1181
- package/dist/package.json +11 -2
- package/dist/{startBroker.d.ts → start-broker.d.mts} +2 -0
- package/dist/start-broker.d.ts +42 -0
- package/dist/start-broker.js +1273 -0
- package/package.json +14 -5
- package/dist/forkDevWorker.js +0 -2523
- package/dist/forkGenerateDts.js +0 -1618
- package/dist/launch-web-client.d.ts +0 -2
- package/dist/startBroker.js +0 -902
- /package/dist/{forkDevWorker.d.ts → fork-dev-worker.d.mts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/dts-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"author": "hanric <hanric.zhang@gmail.com>",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -22,6 +22,11 @@
|
|
|
22
22
|
"import": "./dist/core.js",
|
|
23
23
|
"require": "./dist/core.js"
|
|
24
24
|
},
|
|
25
|
+
"./dynamic-remote-type-hints-plugin": {
|
|
26
|
+
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
|
|
27
|
+
"import": "./dist/esm/dynamic-remote-type-hints-plugin.js",
|
|
28
|
+
"require": "./dist/dynamic-remote-type-hints-plugin.js"
|
|
29
|
+
},
|
|
25
30
|
"./*": "./*"
|
|
26
31
|
},
|
|
27
32
|
"typesVersions": {
|
|
@@ -31,6 +36,9 @@
|
|
|
31
36
|
],
|
|
32
37
|
"core": [
|
|
33
38
|
"./dist/core.d.ts"
|
|
39
|
+
],
|
|
40
|
+
"dynamic-remote-type-hints-plugin": [
|
|
41
|
+
"./dist/dynamic-remote-type-hints-plugin.d.ts"
|
|
34
42
|
]
|
|
35
43
|
}
|
|
36
44
|
},
|
|
@@ -47,14 +55,15 @@
|
|
|
47
55
|
"log4js": "6.9.1",
|
|
48
56
|
"node-schedule": "2.1.1",
|
|
49
57
|
"ws": "8.17.0",
|
|
50
|
-
"@module-federation/sdk": "0.1.
|
|
51
|
-
"@module-federation/managers": "0.1.
|
|
52
|
-
"@module-federation/third-party-dts-extractor": "0.1.
|
|
58
|
+
"@module-federation/sdk": "0.1.21",
|
|
59
|
+
"@module-federation/managers": "0.1.21",
|
|
60
|
+
"@module-federation/third-party-dts-extractor": "0.1.21"
|
|
53
61
|
},
|
|
54
62
|
"devDependencies": {
|
|
55
63
|
"@types/ws": "8.5.10",
|
|
56
64
|
"@types/koa": "2.11.2",
|
|
57
|
-
"@types/node-schedule": "2.1.7"
|
|
65
|
+
"@types/node-schedule": "2.1.7",
|
|
66
|
+
"@module-federation/runtime": "0.1.21"
|
|
58
67
|
},
|
|
59
68
|
"peerDependencies": {
|
|
60
69
|
"typescript": "^4.9.0 || ^5.0.0",
|