create-rspeedy 0.15.0 → 0.15.2
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/dist/index.js +5 -0
- package/package.json +4 -4
- package/template-react-js/package.json +1 -1
- package/template-react-ts/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# create-rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.15.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Bump `@lynx-js/preact-devtools` to the latest published version in the React templates. ([#2880](https://github.com/lynx-family/lynx-stack/pull/2880))
|
|
8
|
+
|
|
9
|
+
## 0.15.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Add the `rspeedy-bundle-size` skill to the optional skills users can select during project creation. It analyzes and reduces the bundle size of rspeedy/Lynx apps, sourced from `lynx-community/skills`. ([#2872](https://github.com/lynx-family/lynx-stack/pull/2872))
|
|
14
|
+
|
|
3
15
|
## 0.15.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -95,6 +95,11 @@ create({
|
|
|
95
95
|
label: 'Lynx DevTool',
|
|
96
96
|
source: 'lynx-community/skills',
|
|
97
97
|
value: 'lynx-devtool'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
label: 'Rspeedy Bundle Size',
|
|
101
|
+
source: 'lynx-community/skills',
|
|
102
|
+
value: 'rspeedy-bundle-size'
|
|
98
103
|
}
|
|
99
104
|
],
|
|
100
105
|
mapESLintTemplate (templateName) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspeedy",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
4
4
|
"description": "Create Rspeedy-powered ReactLynx apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@rsbuild/plugin-type-check": "1.3.4",
|
|
38
38
|
"@rstest/core": "0.10.5",
|
|
39
39
|
"@lynx-js/qrcode-rsbuild-plugin": "^0.5.0",
|
|
40
|
-
"@lynx-js/react": "^0.
|
|
41
|
-
"@lynx-js/react-rsbuild-plugin": "^0.17.
|
|
42
|
-
"@lynx-js/rspeedy": "^0.15.
|
|
40
|
+
"@lynx-js/react": "^0.122.1",
|
|
41
|
+
"@lynx-js/react-rsbuild-plugin": "^0.17.2",
|
|
42
|
+
"@lynx-js/rspeedy": "^0.15.2"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": "^20.19.0 || >=22.12.0"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@lynx-js/react": "workspace:*"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@lynx-js/preact-devtools": "5.0.1-
|
|
14
|
+
"@lynx-js/preact-devtools": "5.0.1-20260624133547-6641319",
|
|
15
15
|
"@lynx-js/qrcode-rsbuild-plugin": "workspace:*",
|
|
16
16
|
"@lynx-js/react-rsbuild-plugin": "workspace:*",
|
|
17
17
|
"@lynx-js/rspeedy": "workspace:*"
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"@lynx-js/react": "workspace:*"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@lynx-js/preact-devtools": "5.0.1-
|
|
14
|
+
"@lynx-js/preact-devtools": "5.0.1-20260624133547-6641319",
|
|
15
15
|
"@lynx-js/qrcode-rsbuild-plugin": "workspace:*",
|
|
16
16
|
"@lynx-js/react-rsbuild-plugin": "workspace:*",
|
|
17
17
|
"@lynx-js/rspeedy": "workspace:*",
|
|
18
|
-
"@lynx-js/types": "
|
|
18
|
+
"@lynx-js/types": "4.0.0",
|
|
19
19
|
"@rsbuild/plugin-type-check": "1.3.4",
|
|
20
20
|
"@types/react": "^18.3.28",
|
|
21
21
|
"typescript": "~5.9.3"
|