Skip to content

Commit 367912e

Browse files
committed
Changing name to create-tsrouter-app
1 parent 23e5867 commit 367912e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ body:
66
value: |
77
Thank you for reporting an issue :pray:.
88
9-
This issue tracker is for reporting bugs found in `create-tanstack-app` (https://github.com/tanstack/create-tanstack-app).
9+
This issue tracker is for reporting bugs found in `create-tsrouter-app` (https://github.com/tanstack/create-tsrouter-app).
1010
If you have a question about how to achieve something and are struggling, please post a question
11-
inside of `create-tanstack-app` Discussions tab: https://github.com/tanstack/create-tanstack-app/discussions
11+
inside of `create-tsrouter-app` Discussions tab: https://github.com/tanstack/create-tsrouter-app/discussions
1212
1313
Before submitting a new bug/issue, please check the links below to see if there is a solution or question posted there already:
14-
- `create-tanstack-app` Issues tab: https://github.com/tanstack/create-tanstack-app/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
15-
- `create-tanstack-app` closed issues tab: https://github.com/tanstack/create-tanstack-app/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aclosed
16-
- `create-tanstack-app` Discussions tab: https://github.com/tanstack/create-tanstack-app/discussions
14+
- `create-tsrouter-app` Issues tab: https://github.com/tanstack/create-tsrouter-app/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
15+
- `create-tsrouter-app` closed issues tab: https://github.com/tanstack/create-tsrouter-app/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aclosed
16+
- `create-tsrouter-app` Discussions tab: https://github.com/tanstack/create-tsrouter-app/discussions
1717
1818
The more information you fill in, the better the community can help you.
1919
- type: dropdown

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
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-tanstack-app`
4+
- `gh repo clone TanStack/create-tsrouter-app`
55
- Ensure `node` is installed
66
- https://nodejs.org/en/
77
- Ensure `pnpm` is installed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-tanstack-app",
2+
"name": "create-tsrouter-app",
33
"version": "0.0.1",
44
"description": "Tanstack Application Builder",
55
"bin": "./dist/index.js",

project-template/index.html.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-tanstack-app"
10+
content="Web site created using create-tsrouter-app"
1111
/>
1212
<link rel="apple-touch-icon" href="/logo192.png" />
1313
<link rel="manifest" href="/manifest.json" />

scripts/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const __dirname = fileURLToPath(new URL('.', import.meta.url))
99
await publish({
1010
packages: [
1111
{
12-
name: 'create-tanstack-app',
12+
name: 'create-tsrouter-app',
1313
packageDir: '.',
1414
},
1515
],

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ async function createApp(projectName: string, options: Required<Options>) {
194194
}
195195

196196
program
197-
.name('create-tanstack-app')
197+
.name('create-tsrouter-app')
198198
.description('CLI to create a new TanStack application')
199199
.argument('<project-name>', 'name of the project')
200200
.option<'typescript' | 'javascript'>(

0 commit comments

Comments
 (0)