create-tsrouter-app 0.54.2 → 0.54.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 +16 -0
- package/README.md +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# create-tsrouter-app
|
|
2
2
|
|
|
3
|
+
## 0.54.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
|
+
|
|
11
|
+
## 0.54.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`a650d35`](https://github.com/TanStack/cli/commit/a650d3590dab0869e3ee873c029631dcbb9953e9)]:
|
|
16
|
+
- @tanstack/create@0.61.1
|
|
17
|
+
- @tanstack/cli@0.59.3
|
|
18
|
+
|
|
3
19
|
## 0.54.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ To maintain compatability with `create-react-app` you can build a new applicatio
|
|
|
13
13
|
| `pnpm dlx create-tsrouter-app@latest my-app` | Create a new app |
|
|
14
14
|
| `pnpm dlx create-tsrouter-app@latest my-app --template file-router` | Create a new file based app |
|
|
15
15
|
| `pnpm dlx create-tsrouter-app@latest my-app --template typescript` | Create a new TypeScript app using the Code Router |
|
|
16
|
-
| `pnpm dlx create-tsrouter-app@latest my-app --tailwind` |
|
|
16
|
+
| `pnpm dlx create-tsrouter-app@latest my-app --tailwind` | Deprecated compatibility flag (ignored) |
|
|
17
17
|
| `pnpm dlx create-tsrouter-app@latest my-app --framework solid` | Create a Solid app |
|
|
18
18
|
| `pnpm dlx create-tsrouter-app@latest my-app --framework solid --template file-router` | Create a Solid app with file-router |
|
|
19
19
|
|
|
@@ -38,13 +38,13 @@ This will start an interactive CLI that guides you through the setup process, al
|
|
|
38
38
|
You can also use command line flags to specify your preferences directly:
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
pnpm dlx create-tsrouter-app@latest my-app --template file-router --
|
|
41
|
+
pnpm dlx create-tsrouter-app@latest my-app --template file-router --package-manager pnpm
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
Available options:
|
|
45
45
|
|
|
46
46
|
- `--template <type>`: Choose between `file-router`, `typescript`, or `javascript`
|
|
47
|
-
- `--tailwind`:
|
|
47
|
+
- `--tailwind` / `--no-tailwind`: Deprecated compatibility flags; accepted but ignored (Tailwind is always enabled)
|
|
48
48
|
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
|
|
49
49
|
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
|
|
50
50
|
- `--no-git`: Do not initialize a git repository
|
|
@@ -88,7 +88,7 @@ pnpm dlx create-tsrouter-app@latest my-app --template typescript
|
|
|
88
88
|
|
|
89
89
|
### Tailwind CSS
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
Tailwind CSS is always configured by default. `--tailwind` / `--no-tailwind` are accepted for compatibility but ignored.
|
|
92
92
|
|
|
93
93
|
### Package Manager
|
|
94
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsrouter-app",
|
|
3
|
-
"version": "0.54.
|
|
3
|
+
"version": "0.54.4",
|
|
4
4
|
"description": "Tanstack Application 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",
|