File tree Expand file tree Collapse file tree 15 files changed +21
-21
lines changed Expand file tree Collapse file tree 15 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ const FRAMEWORKS: Framework[] = [
205205 name : 'custom-svelte-kit' ,
206206 display : 'SvelteKit ↗' ,
207207 color : red ,
208- customCommand : 'npm create svelte@latest TARGET_DIR' ,
208+ customCommand : 'npm exec sv create TARGET_DIR' ,
209209 } ,
210210 ] ,
211211 } ,
Original file line number Diff line number Diff line change 11import { render } from 'preact'
2- import { App } from './app.tsx'
32import './index.css'
3+ import { App } from './app.tsx'
44
55render ( < App /> , document . getElementById ( 'app' ) ! )
Original file line number Diff line number Diff line change 11import { render } from 'preact'
2- import { App } from './app.jsx'
32import './index.css'
3+ import { App } from './app.jsx'
44
55render ( < App /> , document . getElementById ( 'app' ) )
Original file line number Diff line number Diff line change 11import '@builder.io/qwik/qwikloader.js'
22
33import { render } from '@builder.io/qwik'
4- import { App } from './app.tsx'
54import './index.css'
5+ import { App } from './app.tsx'
66
77render ( document . getElementById ( 'app' ) as HTMLElement , < App /> )
Original file line number Diff line number Diff line change 11import '@builder.io/qwik/qwikloader.js'
22
33import { render } from '@builder.io/qwik'
4- import { App } from './app.jsx'
54import './index.css'
5+ import { App } from './app.jsx'
66
77render ( document . getElementById ( 'app' ) , < App /> )
Original file line number Diff line number Diff line change 11import { StrictMode } from 'react'
22import { createRoot } from 'react-dom/client'
3- import App from './App.tsx'
43import './index.css'
4+ import App from './App.tsx'
55
66createRoot ( document . getElementById ( 'root' ) ! ) . render (
77 < StrictMode >
Original file line number Diff line number Diff line change 11import { StrictMode } from 'react'
22import { createRoot } from 'react-dom/client'
3- import App from './App.jsx'
43import './index.css'
4+ import App from './App.jsx'
55
66createRoot ( document . getElementById ( 'root' ) ) . render (
77 < StrictMode >
Original file line number Diff line number Diff line change 11/* @refresh reload */
22import { render } from 'solid-js/web'
3-
43import './index.css'
5- import App from './App'
4+ import App from './App.tsx '
65
76const root = document . getElementById ( 'root' )
87
Original file line number Diff line number Diff line change 11/* @refresh reload */
22import { render } from 'solid-js/web'
3-
43import './index.css'
5- import App from './App'
4+ import App from './App.jsx '
65
76const root = document . getElementById ( 'root' )
87
Original file line number Diff line number Diff line change 1010 "check" : " svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json"
1111 },
1212 "devDependencies" : {
13- "@sveltejs/vite-plugin-svelte" : " ^3.1.2 " ,
13+ "@sveltejs/vite-plugin-svelte" : " ^4.0.0 " ,
1414 "@tsconfig/svelte" : " ^5.0.4" ,
15- "svelte" : " ^4.2.19 " ,
15+ "svelte" : " ^5.0.3 " ,
1616 "svelte-check" : " ^4.0.5" ,
1717 "tslib" : " ^2.8.0" ,
1818 "typescript" : " ~5.6.2" ,
You can’t perform that action at this time.
0 commit comments