create-tsrouter-app 0.33.2 → 0.34.0
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Available options:
|
|
|
46
46
|
- `--template <type>`: Choose between `file-router`, `typescript`, or `javascript`
|
|
47
47
|
- `--tailwind`: Enable Tailwind CSS
|
|
48
48
|
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
|
|
49
|
-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint
|
|
49
|
+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
|
|
50
50
|
- `--no-git`: Do not initialize a git repository
|
|
51
51
|
- `--add-ons`: Enable add-on selection or specify add-ons to install
|
|
52
52
|
|
|
@@ -102,7 +102,7 @@ Choose your preferred solution for formatting and linting either through the int
|
|
|
102
102
|
|
|
103
103
|
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
|
|
104
104
|
|
|
105
|
-
Setting this flag to `eslint
|
|
105
|
+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
|
|
106
106
|
|
|
107
107
|
## Add-ons (experimental)
|
|
108
108
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsrouter-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"description": "Tanstack Application 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-cli": "0.
|
|
27
|
-
"@tanstack/cta-framework-react-cra": "0.
|
|
28
|
-
"@tanstack/cta-framework-solid": "0.
|
|
26
|
+
"@tanstack/cta-cli": "0.34.0",
|
|
27
|
+
"@tanstack/cta-framework-react-cra": "0.34.0",
|
|
28
|
+
"@tanstack/cta-framework-solid": "0.34.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.13.4",
|