@modern-js/runtime 2.32.0 → 2.32.1
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,5 +1,18 @@
|
|
|
1
1
|
# @modern-js/runtime
|
|
2
2
|
|
|
3
|
+
## 2.32.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 90e053a: feat(app-tools): add comments for configurations and functions
|
|
8
|
+
|
|
9
|
+
feat(app-tools): 为配置和函数添加 comments 说明
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [90e053a]
|
|
12
|
+
- @modern-js/types@2.32.1
|
|
13
|
+
- @modern-js/utils@2.32.1
|
|
14
|
+
- @modern-js/plugin@2.32.1
|
|
15
|
+
|
|
3
16
|
## 2.32.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -71,7 +71,7 @@ class LoadablePlugin {
|
|
|
71
71
|
const outputFile = path.resolve(outputFolder || "", this.opts.filename);
|
|
72
72
|
fs.outputFileSync(outputFile, manifest);
|
|
73
73
|
}
|
|
74
|
-
constructor({ filename = "loadable-stats.json", path:
|
|
74
|
+
constructor({ filename = "loadable-stats.json", path: path2, writeToDisk, outputAsset = true, chunkLoadingGlobal = "__LOADABLE_LOADED_CHUNKS__" } = {
|
|
75
75
|
filename: "loadable-stats.json",
|
|
76
76
|
outputAsset: true,
|
|
77
77
|
chunkLoadingGlobal: "__LOADABLE_LOADED_CHUNKS__"
|
|
@@ -80,7 +80,7 @@ class LoadablePlugin {
|
|
|
80
80
|
_define_property(this, "compiler", void 0);
|
|
81
81
|
this.opts = {
|
|
82
82
|
filename,
|
|
83
|
-
path:
|
|
83
|
+
path: path2,
|
|
84
84
|
writeToDisk,
|
|
85
85
|
outputAsset,
|
|
86
86
|
chunkLoadingGlobal
|
|
@@ -8,8 +8,8 @@ export type PluginOptions = Parameters<typeof createStore>[0] & {
|
|
|
8
8
|
logger?: false | ReduxLoggerOptions;
|
|
9
9
|
effects?: any;
|
|
10
10
|
/**
|
|
11
|
-
* Default: false
|
|
12
11
|
* When it's true, will remove immer plugin
|
|
12
|
+
* @default false
|
|
13
13
|
*/
|
|
14
14
|
disableImmer?: boolean;
|
|
15
15
|
devtools?: any;
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"modern",
|
|
16
16
|
"modern.js"
|
|
17
17
|
],
|
|
18
|
-
"version": "2.32.
|
|
18
|
+
"version": "2.32.1",
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=14.17.6"
|
|
21
21
|
},
|
|
@@ -173,9 +173,9 @@
|
|
|
173
173
|
"redux-logger": "^3.0.6",
|
|
174
174
|
"styled-components": "^5.3.1",
|
|
175
175
|
"@swc/helpers": "0.5.1",
|
|
176
|
-
"@modern-js/plugin": "2.32.
|
|
177
|
-
"@modern-js/types": "2.32.
|
|
178
|
-
"@modern-js/utils": "2.32.
|
|
176
|
+
"@modern-js/plugin": "2.32.1",
|
|
177
|
+
"@modern-js/types": "2.32.1",
|
|
178
|
+
"@modern-js/utils": "2.32.1"
|
|
179
179
|
},
|
|
180
180
|
"peerDependencies": {
|
|
181
181
|
"react": ">=17",
|
|
@@ -196,11 +196,11 @@
|
|
|
196
196
|
"ts-jest": "^29.1.0",
|
|
197
197
|
"typescript": "^5",
|
|
198
198
|
"webpack": "^5.88.1",
|
|
199
|
-
"@modern-js/app-tools": "2.32.
|
|
200
|
-
"@modern-js/core": "2.32.
|
|
201
|
-
"@modern-js/server-core": "2.32.
|
|
202
|
-
"@scripts/
|
|
203
|
-
"@scripts/
|
|
199
|
+
"@modern-js/app-tools": "2.32.1",
|
|
200
|
+
"@modern-js/core": "2.32.1",
|
|
201
|
+
"@modern-js/server-core": "2.32.1",
|
|
202
|
+
"@scripts/build": "2.32.1",
|
|
203
|
+
"@scripts/jest-config": "2.32.1"
|
|
204
204
|
},
|
|
205
205
|
"sideEffects": false,
|
|
206
206
|
"publishConfig": {
|