@lynx-js/react-alias-rsbuild-plugin 0.19.0 → 0.20.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 +10 -0
- package/package.json +19 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @lynx-js/react-alias-rsbuild-plugin
|
|
2
2
|
|
|
3
|
+
## 0.20.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Declare the build host as an optional peer dependency. `@rsbuild/core` covers a plain Rsbuild build, and `@lynx-js/rspeedy` covers an Rspeedy one, so whichever host is installed is version-checked. ([#3678](https://github.com/lynx-family/lynx-stack/pull/3678))
|
|
8
|
+
|
|
9
|
+
- **BREAKING CHANGE**: Require `@lynx-js/rspeedy` `^0.17.0` in the plugins that read the build engine config through `Symbol.for('@lynx-js/rsbuild-plugin:config')`, since the engine that ships with `0.16` does not expose it. The plugins that do not touch the engine keep their existing range and add `^0.17.0` to it. ([#3682](https://github.com/lynx-family/lynx-stack/pull/3682))
|
|
10
|
+
|
|
11
|
+
## 0.19.1
|
|
12
|
+
|
|
3
13
|
## 0.19.0
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/react-alias-rsbuild-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "A rsbuild plugin for making alias in ReactLynx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rsbuild",
|
|
@@ -33,15 +33,28 @@
|
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@microsoft/api-extractor": "7.58.12",
|
|
36
|
-
"@rsbuild/core": "2.
|
|
37
|
-
"@rspack/core": "2.
|
|
38
|
-
"@rstest/core": "0.11.
|
|
36
|
+
"@rsbuild/core": "2.2.3",
|
|
37
|
+
"@rspack/core": "2.2.2",
|
|
38
|
+
"@rstest/core": "0.11.12",
|
|
39
39
|
"@types/semver": "^7.8.0",
|
|
40
40
|
"semver": "^7.8.5",
|
|
41
|
-
"@lynx-js/react": "0.
|
|
42
|
-
"@lynx-js/react-webpack-plugin": "0.11.
|
|
41
|
+
"@lynx-js/react": "0.126.0",
|
|
42
|
+
"@lynx-js/react-webpack-plugin": "0.11.2",
|
|
43
|
+
"@lynx-js/rspeedy": "0.17.0",
|
|
43
44
|
"@lynx-js/test-tools": "0.0.0"
|
|
44
45
|
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@lynx-js/rspeedy": "^0.16.0 || ^0.17.0",
|
|
48
|
+
"@rsbuild/core": "^2.0.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependenciesMeta": {
|
|
51
|
+
"@lynx-js/rspeedy": {
|
|
52
|
+
"optional": true
|
|
53
|
+
},
|
|
54
|
+
"@rsbuild/core": {
|
|
55
|
+
"optional": true
|
|
56
|
+
}
|
|
57
|
+
},
|
|
45
58
|
"engines": {
|
|
46
59
|
"node": ">=18"
|
|
47
60
|
},
|