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