@modern-js/plugin-garfish 2.9.0 → 2.10.0

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 (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +16 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @modern-js/plugin-garfish
2
2
 
3
+ ## 2.10.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0da32d0: chore: upgrade jest and puppeteer
8
+ chore: 升级 jest 和 puppeteer 到 latest
9
+ - 0d9962b: fix: add types field in package.json
10
+ fix: 添加 package.json 中的 types 字段
11
+ - ae7cee2: fix: fix optional peerDep cause ghost dep
12
+ 修复 peerDep 带来的幻影依赖问题
13
+ - Updated dependencies [0da32d0]
14
+ - Updated dependencies [5766414]
15
+ - Updated dependencies [fbefa7e]
16
+ - Updated dependencies [4d54233]
17
+ - Updated dependencies [6db4864]
18
+ - Updated dependencies [950e138]
19
+ - @modern-js/runtime@2.10.0
20
+ - @modern-js/utils@2.10.0
21
+
3
22
  ## 2.9.0
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "2.9.0",
14
+ "version": "2.10.0",
15
15
  "jsnext:source": "./src/cli/index.ts",
16
16
  "types": "./dist/types/cli/index.d.ts",
17
17
  "typesVersions": {
@@ -39,18 +39,22 @@
39
39
  "./types": "./type.d.ts",
40
40
  ".": {
41
41
  "jsnext:source": "./src/cli/index.ts",
42
+ "types": "./dist/types/runtime/index.d.ts",
42
43
  "default": "./dist/cjs/cli/index.js"
43
44
  },
44
45
  "./cli": {
45
46
  "jsnext:source": "./src/cli/index.ts",
47
+ "types": "./dist/types/cli/index.d.ts",
46
48
  "default": "./dist/cjs/cli/index.js"
47
49
  },
48
50
  "./deps": {
49
51
  "jsnext:source": "./src/deps/index.ts",
52
+ "types": "./dist/types/deps/index.d.ts",
50
53
  "default": "./dist/esm/deps/index.js"
51
54
  },
52
55
  "./runtime": {
53
56
  "jsnext:source": "./src/index.ts",
57
+ "types": "./dist/types/runtime/index.d.ts",
54
58
  "default": "./dist/esm/runtime/index.js"
55
59
  }
56
60
  },
@@ -62,38 +66,33 @@
62
66
  "garfish": "^1.8.1",
63
67
  "hoist-non-react-statics": "^3.3.2",
64
68
  "react-loadable": "^5.5.0",
65
- "@modern-js/utils": "2.9.0"
69
+ "@modern-js/utils": "2.10.0"
66
70
  },
67
71
  "peerDependencies": {
68
- "@modern-js/runtime": "^2.9.0"
69
- },
70
- "peerDependenciesMeta": {
71
- "@modern-js/runtime": {
72
- "optional": true
73
- }
72
+ "@modern-js/runtime": "^2.10.0"
74
73
  },
75
74
  "devDependencies": {
76
75
  "@testing-library/jest-dom": "^5.16.1",
77
76
  "@testing-library/react": "^13.4.0",
78
77
  "@testing-library/react-hooks": "^8.0.1",
79
78
  "@testing-library/user-event": "^14.4.3",
80
- "@types/jest": "^27",
79
+ "@types/jest": "^29",
81
80
  "@types/node": "^14",
82
81
  "@types/testing-library__jest-dom": "^5.14.3",
83
- "jest": "^27",
82
+ "jest": "^29",
84
83
  "jest-fetch-mock": "^3.0.3",
85
84
  "react": "^18",
86
85
  "react-dom": "^18",
87
86
  "react-router-dom": "^6.8.1",
88
87
  "typescript": "^4",
89
88
  "webpack-chain": "^6.5.1",
90
- "@modern-js/app-tools": "2.9.0",
91
- "@modern-js/core": "2.9.0",
92
- "@modern-js/plugin-router-v5": "2.9.0",
93
- "@modern-js/runtime": "2.9.0",
94
- "@modern-js/types": "2.9.0",
95
- "@scripts/build": "2.9.0",
96
- "@scripts/jest-config": "2.9.0"
89
+ "@modern-js/app-tools": "2.10.0",
90
+ "@modern-js/core": "2.10.0",
91
+ "@modern-js/plugin-router-v5": "2.10.0",
92
+ "@modern-js/runtime": "2.10.0",
93
+ "@modern-js/types": "2.10.0",
94
+ "@scripts/build": "2.10.0",
95
+ "@scripts/jest-config": "2.10.0"
97
96
  },
98
97
  "sideEffects": false,
99
98
  "modernConfig": {},