create-start-app 0.40.0 → 0.41.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.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -10,13 +10,13 @@ To maintain compatability with `create-react-app` you can build a new applicatio
10
10
 
11
11
  | Command | Description |
12
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 |
13
+ | `pnpm dlx create-start-app@latest my-app` | Create a new app |
14
+ | `pnpm dlx 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
 
18
18
  ```bash
19
- pnpx create-start-app@latest
19
+ pnpm dlx create-start-app@latest
20
20
  ```
21
21
 
22
22
  This will start an interactive CLI that guides you through the setup process, allowing you to choose:
@@ -31,7 +31,7 @@ This will start an interactive CLI that guides you through the setup process, al
31
31
  You can also use command line flags to specify your preferences directly:
32
32
 
33
33
  ```bash
34
- pnpx create-start-app@latest my-app --tailwind --package-manager pnpm
34
+ pnpm dlx create-start-app@latest my-app --tailwind --package-manager pnpm
35
35
  ```
36
36
 
37
37
  Available options:
@@ -70,7 +70,7 @@ Setting this flag to `eslint` will configure it as your toolchain of choice, add
70
70
  You can enable add-on selection:
71
71
 
72
72
  ```bash
73
- pnpx create-start-app@latest --add-ons
73
+ pnpm dlx create-start-app@latest --add-ons
74
74
  ```
75
75
 
76
76
  This will prompt you to select the add-ons you want to enable during application creation.
@@ -78,19 +78,19 @@ This will prompt you to select the add-ons you want to enable during application
78
78
  You can enable specific add-ons directly by adding a comma separated list of add-on names to the `--add-ons` flag. For example:
79
79
 
80
80
  ```bash
81
- pnpx create-start-app@latest my-app --add-ons shadcn,tanstack-query
81
+ pnpm dlx create-start-app@latest my-app --add-ons shadcn,tanstack-query
82
82
  ```
83
83
 
84
84
  You can get a list of all available add-ons by running:
85
85
 
86
86
  ```bash
87
- pnpx create-start-app@latest --list-add-ons
87
+ pnpm dlx create-start-app@latest --list-add-ons
88
88
  ```
89
89
 
90
90
  This will get you a list of all available add-ons for Solid.
91
91
 
92
92
  ```bash
93
- pnpx create-start-app@latest --list-add-ons --framework solid
93
+ pnpm dlx create-start-app@latest --list-add-ons --framework solid
94
94
  ```
95
95
 
96
96
  ## MCP (Model Context Protocol) Support (experimental)
@@ -98,7 +98,7 @@ pnpx create-start-app@latest --list-add-ons --framework solid
98
98
  You can launch the `create-start-app` CLI with the `--mcp` flag to enable MCP support. Use this in your MCP enabled IDE to allow the Agent model to generate TanStack Start applications.
99
99
 
100
100
  ```bash
101
- pnpx create-start-app@latest --mcp
101
+ pnpm dlx create-start-app@latest --mcp
102
102
  ```
103
103
 
104
104
  Here is the JSON configuration for MCP support in many MCP clients.
@@ -107,7 +107,7 @@ Here is the JSON configuration for MCP support in many MCP clients.
107
107
  {
108
108
  "mcpServers": {
109
109
  "create-start-app": {
110
- "command": "pnpx",
110
+ "command": "pnpm dlx",
111
111
  "args": ["create-start-app@latest", "--mcp"]
112
112
  }
113
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-start-app",
3
- "version": "0.40.0",
3
+ "version": "0.41.2",
4
4
  "description": "Tanstack Start Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -23,9 +23,9 @@
23
23
  "author": "Jack Herrington <jherr@pobox.com>",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@tanstack/cta-framework-react-cra": "0.40.0",
27
- "@tanstack/cta-framework-solid": "0.40.0",
28
- "@tanstack/cta-cli": "0.40.0"
26
+ "@tanstack/cta-cli": "0.41.2",
27
+ "@tanstack/cta-framework-react-cra": "0.41.2",
28
+ "@tanstack/cta-framework-solid": "0.41.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",