@module-federation/data-prefetch 0.0.0-next-20241113075051 → 0.0.0-next-20241113082541
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 +4 -28
- package/dist/package.json +88 -0
- package/package.json +3 -3
- package/project.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,38 +1,14 @@
|
|
|
1
1
|
# @module-federation/data-prefetch
|
|
2
2
|
|
|
3
|
-
## 0.0.0-next-
|
|
3
|
+
## 0.0.0-next-20241113082541
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- @module-federation/runtime@0.0.0-next-20241113075051
|
|
8
|
-
- @module-federation/sdk@0.0.0-next-20241113075051
|
|
9
|
-
|
|
10
|
-
## 0.7.3
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- 4ab9295: disable package json generation during build
|
|
15
|
-
- Updated dependencies [4ab9295]
|
|
16
|
-
- Updated dependencies [c2b1efa]
|
|
17
|
-
- @module-federation/runtime@0.7.3
|
|
18
|
-
- @module-federation/sdk@0.7.3
|
|
19
|
-
|
|
20
|
-
## 0.7.2
|
|
21
|
-
|
|
22
|
-
### Patch Changes
|
|
23
|
-
|
|
24
|
-
- @module-federation/runtime@0.7.2
|
|
25
|
-
- @module-federation/sdk@0.7.2
|
|
26
|
-
|
|
27
|
-
## 0.7.1
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- Updated dependencies [66ba7b1]
|
|
32
7
|
- Updated dependencies [8712967]
|
|
33
8
|
- Updated dependencies [6db4c5f]
|
|
34
|
-
|
|
35
|
-
- @module-federation/
|
|
9
|
+
- Updated dependencies [3082116]
|
|
10
|
+
- @module-federation/runtime@0.0.0-next-20241113082541
|
|
11
|
+
- @module-federation/sdk@0.0.0-next-20241113082541
|
|
36
12
|
|
|
37
13
|
## 0.7.0
|
|
38
14
|
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@module-federation/data-prefetch",
|
|
3
|
+
"description": "Module Federation Data Prefetch",
|
|
4
|
+
"version": "0.7.0",
|
|
5
|
+
"author": "nieyan <nyqykk@foxmail.com>",
|
|
6
|
+
"homepage": "https://github.com/module-federation/core",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "jest"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.esm.mjs",
|
|
17
|
+
"require": "./dist/index.cjs",
|
|
18
|
+
"types": "./dist/index.cjs.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./react": {
|
|
21
|
+
"import": "./dist/react.esm.mjs",
|
|
22
|
+
"require": "./dist/react.cjs.js",
|
|
23
|
+
"types": "./dist/react.cjs.d.ts"
|
|
24
|
+
},
|
|
25
|
+
"./cli": {
|
|
26
|
+
"import": "./dist/cli.esm.mjs",
|
|
27
|
+
"require": "./dist/cli.cjs.js",
|
|
28
|
+
"types": "./dist/cli.cjs.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./babel-plugin": {
|
|
31
|
+
"import": "./dist/babel.esm.mjs",
|
|
32
|
+
"require": "./dist/babel.cjs.js",
|
|
33
|
+
"types": "./dist/babel.cjs.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./universal": {
|
|
36
|
+
"import": "./dist/universal.esm.mjs",
|
|
37
|
+
"require": "./dist/universal.cjs.js",
|
|
38
|
+
"types": "./dist/universal.cjs.d.ts"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"typesVersions": {
|
|
42
|
+
"*": {
|
|
43
|
+
".": [
|
|
44
|
+
"./dist/index.cjs.d.ts"
|
|
45
|
+
],
|
|
46
|
+
"react": [
|
|
47
|
+
"./dist/react.cjs.d.ts"
|
|
48
|
+
],
|
|
49
|
+
"cli": [
|
|
50
|
+
"./dist/cli.cjs.d.ts"
|
|
51
|
+
],
|
|
52
|
+
"universal": [
|
|
53
|
+
"./dist/universal.cjs.d.ts"
|
|
54
|
+
],
|
|
55
|
+
"babel-plugin": [
|
|
56
|
+
"./dist/babel.cjs.d.ts"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"main": "./index.cjs.js",
|
|
61
|
+
"module": "./index.esm.js",
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"react": ">=16.9.0",
|
|
64
|
+
"react-dom": ">=16.9.0"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
68
|
+
"@types/fs-extra": "9.0.6",
|
|
69
|
+
"@types/jest": "^29.5.11",
|
|
70
|
+
"@types/node": "^17.0.45",
|
|
71
|
+
"@types/react": "~18.0.38",
|
|
72
|
+
"jest": "^29.7.0",
|
|
73
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
74
|
+
"minimist": "^1.2.8",
|
|
75
|
+
"react": "^18.3.1",
|
|
76
|
+
"react-dom": "^18.3.1",
|
|
77
|
+
"react-router": "^6.21.3",
|
|
78
|
+
"react-test-renderer": "^18.2.0",
|
|
79
|
+
"ts-jest": "29.0.1",
|
|
80
|
+
"webpack": "5.75.0"
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@module-federation/runtime": "workspace:*",
|
|
84
|
+
"@module-federation/sdk": "workspace:*",
|
|
85
|
+
"fs-extra": "9.1.0"
|
|
86
|
+
},
|
|
87
|
+
"types": "./index.esm.d.ts"
|
|
88
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/data-prefetch",
|
|
3
3
|
"description": "Module Federation Data Prefetch",
|
|
4
|
-
"version": "0.0.0-next-
|
|
4
|
+
"version": "0.0.0-next-20241113082541",
|
|
5
5
|
"author": "nieyan <nyqykk@foxmail.com>",
|
|
6
6
|
"homepage": "https://github.com/module-federation/core",
|
|
7
7
|
"license": "MIT",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"fs-extra": "9.1.0",
|
|
81
|
-
"@module-federation/runtime": "0.0.0-next-
|
|
82
|
-
"@module-federation/sdk": "0.0.0-next-
|
|
81
|
+
"@module-federation/runtime": "0.0.0-next-20241113082541",
|
|
82
|
+
"@module-federation/sdk": "0.0.0-next-20241113082541"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
85
|
"test": "jest"
|
package/project.json
CHANGED