@tanstack/create-start 0.59.10 → 0.59.13
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 +27 -0
- package/README.md +4 -16
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @tanstack/create-start
|
|
2
2
|
|
|
3
|
+
## 0.59.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`0cec826`](https://github.com/TanStack/cli/commit/0cec826040a7d2c79d65f47f76effa49a32163db)]:
|
|
8
|
+
- @tanstack/cli@0.62.0
|
|
9
|
+
|
|
10
|
+
## 0.59.12
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Auto-generated changeset from semantic commits on main.
|
|
15
|
+
|
|
16
|
+
- fix(ci): use direct changeset publish args (b6f5ff5)
|
|
17
|
+
|
|
18
|
+
- Updated dependencies []:
|
|
19
|
+
- @tanstack/cli@0.61.1
|
|
20
|
+
- @tanstack/create@0.62.3
|
|
21
|
+
|
|
22
|
+
## 0.59.11
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`78e3734`](https://github.com/TanStack/cli/commit/78e373444c5bcaf2ab59d2142e8b8b0cab415bbb), [`f33f8d4`](https://github.com/TanStack/cli/commit/f33f8d4954d9ad6771871257a4e1e58feee9b34d), [`16fcd67`](https://github.com/TanStack/cli/commit/16fcd674c0f74c1c62cf97b0042060d5a51981ef)]:
|
|
27
|
+
- @tanstack/cli@0.61.0
|
|
28
|
+
- @tanstack/create@0.62.2
|
|
29
|
+
|
|
3
30
|
## 0.59.10
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -94,25 +94,13 @@ This will get you a list of all available add-ons for Solid.
|
|
|
94
94
|
pnpm create @tanstack/start@latest --list-add-ons --framework solid
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
##
|
|
97
|
+
## Agent Usage
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
The CLI no longer includes an MCP server. Use direct CLI introspection commands instead:
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
pnpm create @tanstack/start@latest --
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
Here is the JSON configuration for MCP support in many MCP clients.
|
|
106
|
-
|
|
107
|
-
```json
|
|
108
|
-
{
|
|
109
|
-
"mcpServers": {
|
|
110
|
-
"create-start-app": {
|
|
111
|
-
"command": "pnpm dlx",
|
|
112
|
-
"args": ["create-start-app@latest", "--mcp"]
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
102
|
+
pnpm create @tanstack/start@latest --list-add-ons
|
|
103
|
+
pnpm create @tanstack/start@latest --addon-details tanstack-query
|
|
116
104
|
```
|
|
117
105
|
|
|
118
106
|
# Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/create-start",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.13",
|
|
4
4
|
"description": "Tanstack Start Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tanstack/cli": "0.
|
|
28
|
-
"@tanstack/create": "0.62.
|
|
27
|
+
"@tanstack/cli": "0.62.0",
|
|
28
|
+
"@tanstack/create": "0.62.3"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.13.4",
|