@esmx/rspack 3.0.0-rc.118 → 3.0.0-rc.119
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/dist/rspack/app.d.ts +1 -1
- package/package.json +5 -5
- package/src/rspack/app.ts +1 -1
- package/LICENSE +0 -21
package/dist/rspack/app.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RspackAppOptions {
|
|
|
127
127
|
config?: (context: RspackAppConfigContext) => void;
|
|
128
128
|
/**
|
|
129
129
|
* Uses rspack-chain to provide chained configuration method, allowing more flexible modification of Rspack configuration.
|
|
130
|
-
* Called
|
|
130
|
+
* Called before the config hook: the chain is applied first, then `chain.toConfig()` produces the final RspackOptions which the config hook may still mutate.
|
|
131
131
|
*
|
|
132
132
|
* @param context - Configuration context, containing framework instance, build target, and chain configuration object
|
|
133
133
|
*/
|
package/package.json
CHANGED
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@esmx/import": "
|
|
67
|
-
"@esmx/pkg-wrapper": "
|
|
66
|
+
"@esmx/import": "workspace:*",
|
|
67
|
+
"@esmx/pkg-wrapper": "workspace:*",
|
|
68
68
|
"@npmcli/arborist": "^9.1.6",
|
|
69
69
|
"@rspack/core": "^2.0.6",
|
|
70
70
|
"css-loader": "^7.1.2",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@biomejs/biome": "2.3.7",
|
|
85
|
-
"@esmx/core": "
|
|
85
|
+
"@esmx/core": "workspace:*",
|
|
86
86
|
"@types/node": "^24.0.0",
|
|
87
87
|
"@types/npmcli__arborist": "^6.3.1",
|
|
88
88
|
"@types/pacote": "^11.1.8",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"unbuild": "3.6.1",
|
|
94
94
|
"vitest": "3.2.6"
|
|
95
95
|
},
|
|
96
|
-
"version": "3.0.0-rc.
|
|
96
|
+
"version": "3.0.0-rc.119",
|
|
97
97
|
"type": "module",
|
|
98
98
|
"private": false,
|
|
99
99
|
"exports": {
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"template",
|
|
113
113
|
"public"
|
|
114
114
|
],
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "2e16b175552400382913b445ae7e112b78c422f5",
|
|
116
116
|
"publishConfig": {
|
|
117
117
|
"access": "public"
|
|
118
118
|
}
|
package/src/rspack/app.ts
CHANGED
|
@@ -156,7 +156,7 @@ export interface RspackAppOptions {
|
|
|
156
156
|
|
|
157
157
|
/**
|
|
158
158
|
* Uses rspack-chain to provide chained configuration method, allowing more flexible modification of Rspack configuration.
|
|
159
|
-
* Called
|
|
159
|
+
* Called before the config hook: the chain is applied first, then `chain.toConfig()` produces the final RspackOptions which the config hook may still mutate.
|
|
160
160
|
*
|
|
161
161
|
* @param context - Configuration context, containing framework instance, build target, and chain configuration object
|
|
162
162
|
*/
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 Esmx Team
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|