Skip to content

Commit 8bb141a

Browse files
committed
rename start-vite to start and start to start-vinxi
1 parent 5f0da11 commit 8bb141a

90 files changed

Lines changed: 796 additions & 796 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/start-vinxi/package.json

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"name": "@solidjs/start-vinxi",
3+
"version": "1.1.7",
4+
"type": "module",
5+
"author": "Ryan Carniato",
6+
"license": "MIT",
7+
"homepage": "https://start.solidjs.com/",
8+
"bugs": "https://github.com/solidjs/solid-start/issues",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/solidjs/solid-start.git",
12+
"directory": "packages/start"
13+
},
14+
"publishConfig": {
15+
"access": "public"
16+
},
17+
"scripts": {
18+
"typecheck": "tsc --noEmit",
19+
"build": "node build && pnpm tsc"
20+
},
21+
"files": [
22+
"config",
23+
"dist",
24+
"env.d.ts"
25+
],
26+
"types": "./dist/index.d.ts",
27+
"exports": {
28+
".": "./dist/index.jsx",
29+
"./config": "./config/index.js",
30+
"./middleware": "./dist/middleware/index.jsx",
31+
"./router": "./dist/router/index.jsx",
32+
"./server": "./dist/server/index.jsx",
33+
"./server/spa": "./dist/server/spa/index.jsx",
34+
"./client": "./dist/client/index.jsx",
35+
"./client/islands": "./dist/client/islands.jsx",
36+
"./client/spa": "./dist/client/spa/index.jsx",
37+
"./env": {
38+
"types": "./env.d.ts",
39+
"import": null
40+
}
41+
},
42+
"typesVersions": {
43+
"*": {
44+
".": [
45+
"./dist/index.d.ts"
46+
],
47+
"middleware": [
48+
"./dist/middleware/index.d.ts"
49+
],
50+
"router": [
51+
"./dist/router/index.d.ts"
52+
],
53+
"server": [
54+
"./dist/server/index.d.ts"
55+
],
56+
"client": [
57+
"./dist/client/index.d.ts"
58+
]
59+
}
60+
},
61+
"devDependencies": {
62+
"solid-js": "^1.9.5",
63+
"vinxi": "^0.5.7"
64+
},
65+
"dependencies": {
66+
"@tanstack/server-functions-plugin": "1.121.21",
67+
"@vinxi/plugin-directives": "^0.5.0",
68+
"@vinxi/server-components": "^0.5.0",
69+
"defu": "^6.1.2",
70+
"error-stack-parser": "^2.1.4",
71+
"html-to-image": "^1.11.11",
72+
"radix3": "^1.1.0",
73+
"seroval": "^1.0.2",
74+
"seroval-plugins": "^1.0.2",
75+
"shiki": "^1.26.1",
76+
"source-map-js": "^1.0.2",
77+
"terracotta": "^1.0.4",
78+
"tinyglobby": "^0.2.2",
79+
"vite": "6",
80+
"vite-plugin-solid": "^2.11.1"
81+
},
82+
"peerDependencies": {
83+
"vinxi": "^0.5.7"
84+
}
85+
}

packages/start-vite/src/client/StartClient.tsx renamed to packages/start-vinxi/src/client/StartClient.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
// @refresh skip
22
// @ts-ignore
3-
import "./client-manifest.js";
43
import App from "#start/app";
54
import type { JSX } from "solid-js";
6-
import { ErrorBoundary } from "../shared/ErrorBoundary.jsx";
7-
// import "./mount";
5+
import { ErrorBoundary } from "../shared/ErrorBoundary";
6+
import "./mount";
87

98
function Dummy(props: { children: JSX.Element }) {
109
return props.children;
@@ -25,3 +24,13 @@ export function StartClient() {
2524
</Dummy>
2625
);
2726
}
27+
28+
export function StartClientTanstack() {
29+
return (
30+
<Dummy>
31+
<ErrorBoundary>
32+
<App />
33+
</ErrorBoundary>
34+
</Dummy>
35+
);
36+
}

0 commit comments

Comments
 (0)