create-start-app 0.59.3 → 0.59.4
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 +8 -0
- package/README.md +2 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# create-start-app
|
|
2
2
|
|
|
3
|
+
## 0.59.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`791bef6`](https://github.com/TanStack/cli/commit/791bef6b5472df5b5e2bffe5c1714c4052a97ac3)]:
|
|
8
|
+
- @tanstack/create@0.61.2
|
|
9
|
+
- @tanstack/cli@0.59.4
|
|
10
|
+
|
|
3
11
|
## 0.59.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -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
|
-
pnpm dlx create-start-app@latest my-app --
|
|
34
|
+
pnpm dlx create-start-app@latest my-app --package-manager pnpm
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Available options:
|
|
@@ -40,6 +40,7 @@ Available options:
|
|
|
40
40
|
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
|
|
41
41
|
- `--no-git`: Do not initialize a git repository
|
|
42
42
|
- `--add-ons`: Enable add-on selection or specify add-ons to install
|
|
43
|
+
- `--tailwind` / `--no-tailwind`: Deprecated compatibility flags; accepted but ignored (Tailwind is always enabled)
|
|
43
44
|
|
|
44
45
|
When using flags, the CLI will display which options were provided and only prompt for the remaining choices.
|
|
45
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-start-app",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.4",
|
|
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.59.
|
|
28
|
-
"@tanstack/create": "0.61.
|
|
27
|
+
"@tanstack/cli": "0.59.4",
|
|
28
|
+
"@tanstack/create": "0.61.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.13.4",
|