create-rspeedy-canary 0.10.0 → 0.10.1-canary-20250708-febda95a
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 +6 -0
- package/package.json +2 -2
- package/template-react-js/src/App.jsx +8 -1
- package/template-react-ts/src/App.tsx +8 -1
- package/template-react-vitest-rltl-js/src/App.jsx +8 -1
- package/template-react-vitest-rltl-js/src/__tests__/index.test.jsx +1 -1
- package/template-react-vitest-rltl-ts/src/App.tsx +8 -1
- package/template-react-vitest-rltl-ts/src/__tests__/index.test.tsx +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspeedy-canary",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1-canary-20250708-febda95a",
|
|
4
4
|
"description": "Create Rspeedy-powered ReactLynx apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@rsbuild/plugin-type-check": "1.2.3",
|
|
38
38
|
"@lynx-js/qrcode-rsbuild-plugin": "npm:@lynx-js/qrcode-rsbuild-plugin-canary@^0.4.0",
|
|
39
39
|
"@lynx-js/react": "npm:@lynx-js/react-canary@^0.111.0",
|
|
40
|
-
"@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.10.
|
|
40
|
+
"@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.10.1-canary-20250708-febda95a",
|
|
41
41
|
"@lynx-js/react-rsbuild-plugin": "npm:@lynx-js/react-rsbuild-plugin-canary@^0.10.6"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
@@ -34,7 +34,14 @@ export function App() {
|
|
|
34
34
|
<image src={arrow} className='Arrow' />
|
|
35
35
|
<text className='Description'>Tap the logo and have fun!</text>
|
|
36
36
|
<text className='Hint'>
|
|
37
|
-
Edit<text
|
|
37
|
+
Edit<text
|
|
38
|
+
style={{
|
|
39
|
+
fontStyle: 'italic',
|
|
40
|
+
color: 'rgba(255, 255, 255, 0.85)',
|
|
41
|
+
}}
|
|
42
|
+
>
|
|
43
|
+
{' src/App.tsx '}
|
|
44
|
+
</text>
|
|
38
45
|
to see updates!
|
|
39
46
|
</text>
|
|
40
47
|
</view>
|
|
@@ -34,7 +34,14 @@ export function App() {
|
|
|
34
34
|
<image src={arrow} className='Arrow' />
|
|
35
35
|
<text className='Description'>Tap the logo and have fun!</text>
|
|
36
36
|
<text className='Hint'>
|
|
37
|
-
Edit<text
|
|
37
|
+
Edit<text
|
|
38
|
+
style={{
|
|
39
|
+
fontStyle: 'italic',
|
|
40
|
+
color: 'rgba(255, 255, 255, 0.85)',
|
|
41
|
+
}}
|
|
42
|
+
>
|
|
43
|
+
{' src/App.tsx '}
|
|
44
|
+
</text>
|
|
38
45
|
to see updates!
|
|
39
46
|
</text>
|
|
40
47
|
</view>
|
|
@@ -35,7 +35,14 @@ export function App(props) {
|
|
|
35
35
|
<image src={arrow} className='Arrow' />
|
|
36
36
|
<text className='Description'>Tap the logo and have fun!</text>
|
|
37
37
|
<text className='Hint'>
|
|
38
|
-
Edit<text
|
|
38
|
+
Edit<text
|
|
39
|
+
style={{
|
|
40
|
+
fontStyle: 'italic',
|
|
41
|
+
color: 'rgba(255, 255, 255, 0.85)',
|
|
42
|
+
}}
|
|
43
|
+
>
|
|
44
|
+
{' src/App.tsx '}
|
|
45
|
+
</text>
|
|
39
46
|
to see updates!
|
|
40
47
|
</text>
|
|
41
48
|
</view>
|
|
@@ -37,7 +37,14 @@ export function App(props: {
|
|
|
37
37
|
<image src={arrow} className='Arrow' />
|
|
38
38
|
<text className='Description'>Tap the logo and have fun!</text>
|
|
39
39
|
<text className='Hint'>
|
|
40
|
-
Edit<text
|
|
40
|
+
Edit<text
|
|
41
|
+
style={{
|
|
42
|
+
fontStyle: 'italic',
|
|
43
|
+
color: 'rgba(255, 255, 255, 0.85)',
|
|
44
|
+
}}
|
|
45
|
+
>
|
|
46
|
+
{' src/App.tsx '}
|
|
47
|
+
</text>
|
|
41
48
|
to see updates!
|
|
42
49
|
</text>
|
|
43
50
|
</view>
|