create-start-app 0.59.3 → 0.59.5

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # create-start-app
2
2
 
3
+ ## 0.59.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`cc5857c`](https://github.com/TanStack/cli/commit/cc5857c5c212132852f37878e039071c5a9b1ac5)]:
8
+ - @tanstack/create@0.61.3
9
+ - @tanstack/cli@0.59.5
10
+
11
+ ## 0.59.4
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`791bef6`](https://github.com/TanStack/cli/commit/791bef6b5472df5b5e2bffe5c1714c4052a97ac3)]:
16
+ - @tanstack/create@0.61.2
17
+ - @tanstack/cli@0.59.4
18
+
3
19
  ## 0.59.3
4
20
 
5
21
  ### 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 --tailwind --package-manager pnpm
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",
3
+ "version": "0.59.5",
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.3",
28
- "@tanstack/create": "0.61.1"
27
+ "@tanstack/cli": "0.59.5",
28
+ "@tanstack/create": "0.61.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",