Skip to content

Commit 067da73

Browse files
committed
docs: update repo references from create-tsrouter-app to cli
1 parent 4158aff commit 067da73

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tanstack --version # Show version
3232
## Monorepo Structure
3333

3434
```
35-
create-tsrouter-app/
35+
cli/
3636
├── packages/
3737
│ ├── cli/ # @tanstack/cli - Main CLI with subcommands
3838
│ ├── create/ # @tanstack/create - Core engine + frameworks
@@ -165,7 +165,7 @@ pnpm test:coverage
165165

166166
## Contributing
167167

168-
1. Clone: `gh repo clone TanStack/create-tsrouter-app`
168+
1. Clone: `gh repo clone TanStack/cli`
169169
2. Install: `pnpm install`
170170
3. Build: `pnpm build`
171171
4. Develop: `pnpm dev`

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing
22

33
- Clone the repo
4-
- `gh repo clone TanStack/create-tsrouter-app`
4+
- `gh repo clone TanStack/cli`
55
- Ensure `node` is installed
66
- https://nodejs.org/en/
77
- Ensure `pnpm` is installed
@@ -22,22 +22,22 @@
2222

2323
# Testing Your Changes
2424

25-
When testing use `pnpm dev` at the top level of the `create-tsrouter-app` repo.
25+
When testing use `pnpm dev` at the top level of the `cli` repo.
2626

2727
Then from a peer directory use:
2828

2929
```bash
3030
# Using the main CLI
31-
node ../create-tsrouter-app/packages/cli/dist/index.js create my-app
31+
node ../cli/packages/cli/dist/index.js create my-app
3232

3333
# Or using a deprecated alias (will show deprecation warning)
34-
node ../create-tsrouter-app/cli-aliases/create-start-app/dist/index.js my-app
34+
node ../cli/cli-aliases/create-start-app/dist/index.js my-app
3535
```
3636

3737
You can also do:
3838

3939
```bash
40-
npm_config_user_agent=pnpm node ../create-tsrouter-app/packages/cli/dist/index.js create my-app
40+
npm_config_user_agent=pnpm node ../cli/packages/cli/dist/index.js create my-app
4141
```
4242

4343
If you want to specify a package manager.
@@ -99,7 +99,7 @@ The Create UI is somewhat tricky to develop on because it's both a web server an
9999
Let's start off with how to run the CLI in "API" mode. Here we are running the CLI in an empty directory in app creation mode.
100100

101101
```bash
102-
CTA_DISABLE_UI=true node ../create-tsrouter-app/packages/cli/dist/index.js create --ui
102+
CTA_DISABLE_UI=true node ../cli/packages/cli/dist/index.js create --ui
103103
```
104104

105105
If this is working you will see the following output:
@@ -113,7 +113,7 @@ Note that it say "Create TanStack **API**" and not "Create TanStack **App**". Th
113113
Here is the same command for the `add` mode:
114114

115115
```bash
116-
CTA_DISABLE_UI=true node ../create-tsrouter-app/packages/cli/dist/index.js add --ui
116+
CTA_DISABLE_UI=true node ../cli/packages/cli/dist/index.js add --ui
117117
```
118118

119119
## Starting the React App

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<a href="https://www.npmjs.com/package/@tanstack/cli" target="_parent">
77
<img alt="" src="https://img.shields.io/npm/dm/@tanstack/cli.svg" />
88
</a>
9-
<a href="https://github.com/TanStack/create-tsrouter-app/stargazers" target="_parent">
10-
<img alt="" src="https://img.shields.io/github/stars/TanStack/create-tsrouter-app.svg?style=social&label=Star" />
9+
<a href="https://github.com/TanStack/cli/stargazers" target="_parent">
10+
<img alt="" src="https://img.shields.io/github/stars/TanStack/cli.svg?style=social&label=Star" />
1111
</a>
1212
<a href="https://twitter.com/tan_stack"><img src="https://img.shields.io/twitter/follow/tan_stack.svg?style=social" /></a>
1313
</div>
@@ -38,7 +38,7 @@ npx @tanstack/cli create my-app
3838
## Get Involved
3939

4040
- We welcome issues and pull requests!
41-
- Participate in [GitHub discussions](https://github.com/TanStack/create-tsrouter-app/discussions)
41+
- Participate in [GitHub discussions](https://github.com/TanStack/cli/discussions)
4242
- Chat with the community on [Discord](https://discord.com/invite/WrRKjPJ)
4343
- See [CONTRIBUTING.md](./CONTRIBUTING.md) for setup instructions
4444

examples/react-cra/ecommerce-starter/starter-info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "AI-powered e-commerce starter with TanStack Start",
66
"author": "Jane Smith <jane.smith@example.com>",
77
"license": "MIT",
8-
"link": "https://github.com/TanStack/create-tsrouter-app",
8+
"link": "https://github.com/TanStack/cli",
99
"shadcnComponents": [],
1010
"framework": "react-cra",
1111
"mode": "file-router",

examples/react-cra/resume-starter/starter-info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Professional resume template with content-collections",
66
"author": "Jane Smith <jane.smith@example.com>",
77
"license": "MIT",
8-
"link": "https://github.com/TanStack/create-tsrouter-app",
8+
"link": "https://github.com/TanStack/cli",
99
"shadcnComponents": [],
1010
"framework": "react-cra",
1111
"mode": "file-router",

0 commit comments

Comments
 (0)