Skip to content

Commit

Permalink
update solid-start version to v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
siduck committed Jun 18, 2024
1 parent 33d9cfb commit eb4a793
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
Binary file modified bun.lockb
Binary file not shown.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@
"start": "vinxi start"
},
"devDependencies": {
"@iconify/json": "^2.2.190",
"unocss": "^0.58.5",
"@unocss/transformer-directives": "^0.58.5"
"@iconify/json": "^2.2.220",
"unocss": "^0.61.0",
"@unocss/transformer-directives": "^0.61.0"
},
"dependencies": {
"@docsearch/css": "^3.6.0",
"@docsearch/js": "3",
"@mdx-js/mdx": "^3.0.1",
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.13.0",
"@solidjs/start": "^0.6.1",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.13.5",
"@solidjs/start": "^1.0.1",
"@vinxi/plugin-mdx": "^3.7.1",
"rehype-highlight": "^7.0.0",
"solid-js": "^1.8.15",
"solid-js": "^1.8.17",
"solid-mdx": "^0.0.7",
"vinxi": "^0.3.10"
"vinxi": "^0.3.12"
},
"engines": {
"node": ">=18"
Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @refresh reload
import { Router } from "@solidjs/router";
import { FileRoutes } from "@solidjs/start";
import { FileRoutes } from "@solidjs/start/router";
import { Suspense } from "solid-js";
import Navbar from "~/components/Navbar";
import "virtual:uno.css";
Expand Down
30 changes: 15 additions & 15 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/client", "vite/client"],
"isolatedModules": true,
"paths": {
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/types/client"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}
}

0 comments on commit eb4a793

Please sign in to comment.