@modern-js/runtime 2.1.1-alpha.0 → 2.2.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.
- package/CHANGELOG.md +12 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @modern-js/runtime
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f7a1c1f: fix: fix the router/server export
|
|
8
|
+
fix: 修复 router/server 的导出
|
|
9
|
+
- Updated dependencies [49eff0c]
|
|
10
|
+
- Updated dependencies [19bb384]
|
|
11
|
+
- @modern-js/utils@2.2.0
|
|
12
|
+
- @modern-js/types@2.2.0
|
|
13
|
+
- @modern-js/plugin@2.2.0
|
|
14
|
+
|
|
3
15
|
## 2.1.0
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.
|
|
14
|
+
"version": "2.2.0",
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=14.17.6"
|
|
17
17
|
},
|
|
@@ -140,9 +140,6 @@
|
|
|
140
140
|
"@modern-js-reduck/plugin-immutable": "^1.1.4",
|
|
141
141
|
"@modern-js-reduck/react": "^1.1.4",
|
|
142
142
|
"@modern-js-reduck/store": "^1.1.4",
|
|
143
|
-
"@modern-js/plugin": "2.1.0",
|
|
144
|
-
"@modern-js/types": "2.1.0",
|
|
145
|
-
"@modern-js/utils": "2.1.0",
|
|
146
143
|
"@remix-run/node": "^1.9.0",
|
|
147
144
|
"@remix-run/router": "^1.2.0",
|
|
148
145
|
"@types/loadable__component": "^5.13.4",
|
|
@@ -158,19 +155,17 @@
|
|
|
158
155
|
"redux-logger": "^3.0.6",
|
|
159
156
|
"serialize-javascript": "^6.0.0",
|
|
160
157
|
"styled-components": "^5.3.1",
|
|
161
|
-
"esbuild": "0.15.7"
|
|
158
|
+
"esbuild": "0.15.7",
|
|
159
|
+
"@modern-js/plugin": "2.2.0",
|
|
160
|
+
"@modern-js/types": "2.2.0",
|
|
161
|
+
"@modern-js/utils": "2.2.0"
|
|
162
162
|
},
|
|
163
163
|
"peerDependencies": {
|
|
164
164
|
"react": ">=17",
|
|
165
165
|
"react-dom": ">=17"
|
|
166
166
|
},
|
|
167
167
|
"devDependencies": {
|
|
168
|
-
"@modern-js/app-tools": "2.1.0",
|
|
169
|
-
"@modern-js/core": "2.1.0",
|
|
170
|
-
"@modern-js/server-core": "2.1.0",
|
|
171
168
|
"@remix-run/web-fetch": "^4.1.3",
|
|
172
|
-
"@scripts/build": "2.1.0",
|
|
173
|
-
"@scripts/jest-config": "2.1.0",
|
|
174
169
|
"@testing-library/react": "^13.4.0",
|
|
175
170
|
"@testing-library/react-hooks": "^8.0.1",
|
|
176
171
|
"@types/invariant": "^2.2.30",
|
|
@@ -183,7 +178,12 @@
|
|
|
183
178
|
"react": "^18",
|
|
184
179
|
"react-dom": "^18",
|
|
185
180
|
"ts-jest": "^27.0.4",
|
|
186
|
-
"typescript": "^4"
|
|
181
|
+
"typescript": "^4",
|
|
182
|
+
"@modern-js/app-tools": "2.2.0",
|
|
183
|
+
"@modern-js/core": "2.2.0",
|
|
184
|
+
"@modern-js/server-core": "2.2.0",
|
|
185
|
+
"@scripts/jest-config": "2.2.0",
|
|
186
|
+
"@scripts/build": "2.2.0"
|
|
187
187
|
},
|
|
188
188
|
"sideEffects": false,
|
|
189
189
|
"modernConfig": {},
|