create-rspeedy 0.8.2 → 0.8.3
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 +8 -0
- package/README.md +1 -1
- package/package.json +11 -6
- package/template-react-js/src/{index.jsx → index.js} +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# create-rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.8.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))
|
|
8
|
+
|
|
9
|
+
- Changing filename of index.jsx to index.js because rspeedy requires index.js. Then edit index.js import statement to make it import App.jsx instead of App.js since App.jsx is present in the template. This resolves "Module not found" error. ([#106](https://github.com/lynx-family/lynx-stack/pull/106))
|
|
10
|
+
|
|
3
11
|
## 0.8.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://lynxjs.org/rspeedy" target="blank"><img src="https://
|
|
2
|
+
<a href="https://lynxjs.org/rspeedy" target="blank"><img src="https://lf-lynx.tiktok-cdns.com/obj/lynx-artifacts-oss-sg/lynx-website/assets/rspeedy-banner.png" alt="Rspeedy Logo" /></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# create-rspeedy
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspeedy",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "Create Rspeedy-powered ReactLynx apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
"Lynx",
|
|
10
10
|
"ReactLynx"
|
|
11
11
|
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/lynx-family/lynx-stack.git",
|
|
15
|
+
"directory": "packages/rspeedy/create-rspeedy"
|
|
16
|
+
},
|
|
12
17
|
"license": "Apache-2.0",
|
|
13
18
|
"author": {
|
|
14
19
|
"name": "Qingyu Wang",
|
|
@@ -26,13 +31,13 @@
|
|
|
26
31
|
"README.md"
|
|
27
32
|
],
|
|
28
33
|
"dependencies": {
|
|
29
|
-
"create-rstack": "1.3.
|
|
34
|
+
"create-rstack": "1.3.1"
|
|
30
35
|
},
|
|
31
36
|
"devDependencies": {
|
|
32
|
-
"@lynx-js/qrcode-rsbuild-plugin": "^0.3.
|
|
33
|
-
"@lynx-js/react": "^0.105.
|
|
34
|
-
"@lynx-js/react-rsbuild-plugin": "^0.9.
|
|
35
|
-
"@lynx-js/rspeedy": "^0.8.
|
|
37
|
+
"@lynx-js/qrcode-rsbuild-plugin": "^0.3.4",
|
|
38
|
+
"@lynx-js/react": "^0.105.1",
|
|
39
|
+
"@lynx-js/react-rsbuild-plugin": "^0.9.1",
|
|
40
|
+
"@lynx-js/rspeedy": "^0.8.3"
|
|
36
41
|
},
|
|
37
42
|
"engines": {
|
|
38
43
|
"node": ">=18"
|