create-start-app 0.11.0 → 0.11.2
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/README.md +16 -7
- package/package.json +4 -3
- package/images/mcp-configuration.png +0 -0
package/README.md
CHANGED
|
@@ -8,10 +8,10 @@ To help accelerate the migration away from `create-react-app` we created the `cr
|
|
|
8
8
|
|
|
9
9
|
To maintain compatability with `create-react-app` you can build a new application by running:
|
|
10
10
|
|
|
11
|
-
| Command
|
|
12
|
-
|
|
|
13
|
-
| `pnpx create-start-app@latest my-app`
|
|
14
|
-
| `pnpx create-start-app@latest my-app --framework solid`
|
|
11
|
+
| Command | Description |
|
|
12
|
+
| ------------------------------------------------------- | ------------------ |
|
|
13
|
+
| `pnpx create-start-app@latest my-app` | Create a new app |
|
|
14
|
+
| `pnpx create-start-app@latest my-app --framework solid` | Create a Solid app |
|
|
15
15
|
|
|
16
16
|
If you don't specify a project name, the CLI will walk you through an interactive setup process:
|
|
17
17
|
|
|
@@ -101,9 +101,18 @@ You can launch the `create-start-app` CLI with the `--mcp` flag to enable MCP su
|
|
|
101
101
|
pnpx create-start-app@latest --mcp
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
Here is the JSON configuration for MCP support in many MCP clients.
|
|
105
|
+
|
|
106
|
+
```json
|
|
107
|
+
{
|
|
108
|
+
"mcpServers": {
|
|
109
|
+
"create-start-app": {
|
|
110
|
+
"command": "pnpx",
|
|
111
|
+
"args": ["create-start-app@latest", "--mcp"]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
```
|
|
107
116
|
|
|
108
117
|
# Contributing
|
|
109
118
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-start-app",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "Tanstack Start Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/TanStack/create-
|
|
9
|
+
"url": "https://github.com/TanStack/create-router-app.git"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://tanstack.com/router",
|
|
12
12
|
"funding": {
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
"react",
|
|
18
18
|
"tanstack",
|
|
19
19
|
"router",
|
|
20
|
+
"tanstack start",
|
|
20
21
|
"create-react-app"
|
|
21
22
|
],
|
|
22
23
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
23
24
|
"license": "MIT",
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@tanstack/cta-engine": "0.11.
|
|
26
|
+
"@tanstack/cta-engine": "0.11.2"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@types/node": "^22.13.4",
|
|
Binary file
|