Skip to content

Commit 5cb0fad

Browse files
committed
Merge branch 'main' into fix/start-devtools-not-working
2 parents 93c3f8d + 0738b4a commit 5cb0fad

File tree

29 files changed

+7882
-32
lines changed

29 files changed

+7882
-32
lines changed

.changeset/thin-cougars-fly.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/react/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@tanstack/devtools-event-client": "^0.2.1",
13-
"@tanstack/react-devtools": "^0.2.2",
13+
"@tanstack/react-devtools": "^0.3.0",
1414
"@tanstack/react-query": "^5.83.0",
1515
"@tanstack/react-query-devtools": "^5.83.0",
1616
"@tanstack/react-router": "^1.130.2",

examples/react/custom-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@tanstack/devtools-event-client": "^0.2.1",
13-
"@tanstack/react-devtools": "^0.2.2",
13+
"@tanstack/react-devtools": "^0.3.0",
1414
"react": "^19.1.0",
1515
"react-dom": "^19.1.0"
1616
},

examples/react/start/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@tailwindcss/vite": "^4.0.6",
2020
"@tanstack/devtools-event-bus": "^0.2.1",
2121
"@tanstack/devtools-event-client": "^0.2.1",
22-
"@tanstack/react-devtools": "^0.2.2",
22+
"@tanstack/react-devtools": "^0.3.0",
2323
"@tanstack/react-query": "^5.83.0",
2424
"@tanstack/react-query-devtools": "^5.83.0",
2525
"@tanstack/react-router": "^1.130.2",
@@ -35,7 +35,7 @@
3535
"zod": "^4.0.14"
3636
},
3737
"devDependencies": {
38-
"@tanstack/devtools": "^0.2.1",
38+
"@tanstack/devtools": "^0.3.1",
3939
"@testing-library/dom": "^10.4.0",
4040
"@testing-library/react": "^16.2.0",
4141
"@types/react": "^19.1.2",

examples/solid/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/solid-devtools": "^0.2.1",
12+
"@tanstack/solid-devtools": "^0.3.0",
1313
"@tanstack/solid-query": "^5.83.0",
1414
"@tanstack/solid-query-devtools": "^5.83.0",
1515
"@tanstack/solid-router": "^1.129.8",

examples/solid/start/.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
dist
2+
.wrangler
3+
.output
4+
.vercel
5+
.netlify
6+
.vinxi
7+
app.config.timestamp_*.js
8+
9+
# Environment
10+
.env
11+
.env*.local
12+
13+
# dependencies
14+
/node_modules
15+
16+
# IDEs and editors
17+
/.idea
18+
.project
19+
.classpath
20+
*.launch
21+
.settings/
22+
23+
# Temp
24+
gitignore
25+
26+
# System Files
27+
.DS_Store
28+
Thumbs.db

examples/solid/start/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# SolidStart
2+
3+
Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
4+
5+
## Creating a project
6+
7+
```bash
8+
# create a new project in the current directory
9+
npm init solid@latest
10+
11+
# create a new project in my-app
12+
npm init solid@latest my-app
13+
```
14+
15+
## Developing
16+
17+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
18+
19+
```bash
20+
npm run dev
21+
22+
# or start the server and open the app in a new browser tab
23+
npm run dev -- --open
24+
```
25+
26+
## Building
27+
28+
Solid apps are built with _presets_, which optimise your project for deployment to different environments.
29+
30+
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`.
31+
32+
## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli)

examples/solid/start/app.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { defineConfig } from '@solidjs/start/config'
2+
3+
export default defineConfig({})

examples/solid/start/package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "example-bare",
3+
"type": "module",
4+
"scripts": {
5+
"dev": "vinxi dev",
6+
"build": "vinxi build",
7+
"start": "vinxi start"
8+
},
9+
"dependencies": {
10+
"@solidjs/start": "^1.1.0",
11+
"@tanstack/solid-devtools": "^0.2.2",
12+
"solid-js": "^1.9.5",
13+
"vinxi": "^0.5.7"
14+
},
15+
"engines": {
16+
"node": ">=22"
17+
}
18+
}

0 commit comments

Comments
 (0)