@module-federation/data-prefetch 0.0.0-next-20241112091427 → 0.0.0-next-20241112220116

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 CHANGED
@@ -1,11 +1,13 @@
1
1
  # @module-federation/data-prefetch
2
2
 
3
- ## 0.0.0-next-20241112091427
3
+ ## 0.0.0-next-20241112220116
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - @module-federation/runtime@0.0.0-next-20241112091427
8
- - @module-federation/sdk@0.0.0-next-20241112091427
7
+ - 7d6042c: disable package json generation during build
8
+ - Updated dependencies [7d6042c]
9
+ - @module-federation/runtime@0.0.0-next-20241112220116
10
+ - @module-federation/sdk@0.0.0-next-20241112220116
9
11
 
10
12
  ## 0.7.2
11
13
 
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-20241112091427",
4
+ "version": "0.0.0-next-20241112220116",
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-20241112091427",
82
- "@module-federation/sdk": "0.0.0-next-20241112091427"
81
+ "@module-federation/runtime": "0.0.0-next-20241112220116",
82
+ "@module-federation/sdk": "0.0.0-next-20241112220116"
83
83
  },
84
84
  "scripts": {
85
85
  "test": "jest"
package/project.json CHANGED
@@ -16,7 +16,8 @@
16
16
  "project": "packages/data-prefetch/package.json",
17
17
  "rollupConfig": "packages/data-prefetch/rollup.config.js",
18
18
  "compiler": "swc",
19
- "format": ["cjs", "esm"]
19
+ "format": ["cjs", "esm"],
20
+ "generatePackageJson": false
20
21
  }
21
22
  },
22
23
  "test": {
package/dist/package.json DELETED
@@ -1,88 +0,0 @@
1
- {
2
- "name": "@module-federation/data-prefetch",
3
- "description": "Module Federation Data Prefetch",
4
- "version": "0.7.2",
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
- }