upgrade-rspeedy 0.8.4 → 0.8.6
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 +21 -0
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
1
|
# upgrade-rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.8.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add Web platform packages. ([#312](https://github.com/lynx-family/lynx-stack/pull/312))
|
|
8
|
+
|
|
9
|
+
This update introduces support for upgrading web platform packages:
|
|
10
|
+
|
|
11
|
+
- `@lynx-js/web-core`: Core web platform functionality
|
|
12
|
+
- `@lynx-js/web-elements`: Web elements and components
|
|
13
|
+
|
|
14
|
+
Usage:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx upgrade-rspeedy
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
This command will now handle the upgrade process for both web platform packages automatically.
|
|
21
|
+
|
|
22
|
+
## 0.8.5
|
|
23
|
+
|
|
3
24
|
## 0.8.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "upgrade-rspeedy",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"description": "Upgrade Rspeedy-related packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -39,11 +39,13 @@
|
|
|
39
39
|
"picocolors": "^1.1.1",
|
|
40
40
|
"rsbuild-plugin-tailwindcss": "0.2.0",
|
|
41
41
|
"rslog": "^1.2.3",
|
|
42
|
-
"type-fest": "^4.
|
|
42
|
+
"type-fest": "^4.38.0",
|
|
43
43
|
"@lynx-js/qrcode-rsbuild-plugin": "0.3.4",
|
|
44
|
-
"@lynx-js/react": "0.
|
|
45
|
-
"@lynx-js/react-rsbuild-plugin": "0.9.
|
|
46
|
-
"@lynx-js/rspeedy": "0.8.
|
|
44
|
+
"@lynx-js/react": "0.106.1",
|
|
45
|
+
"@lynx-js/react-rsbuild-plugin": "0.9.3",
|
|
46
|
+
"@lynx-js/rspeedy": "0.8.6",
|
|
47
|
+
"@lynx-js/web-core": "0.9.1",
|
|
48
|
+
"@lynx-js/web-elements": "0.5.1"
|
|
47
49
|
},
|
|
48
50
|
"engines": {
|
|
49
51
|
"node": ">=18"
|