Skip to content

Commit 96897f8

Browse files
feat: rename to create-typescript-app (#728)
## PR Checklist - [x] Addresses an existing open issue: fixes #671 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Finds-and-replaces the text. I think that's all that needs to happen?
1 parent f57566b commit 96897f8

33 files changed

+152
-155
lines changed

.all-contributorsrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
"README.md"
223223
],
224224
"imageSize": 100,
225-
"projectName": "template-typescript-node-package",
225+
"projectName": "create-typescript-app",
226226
"projectOwner": "JoshuaKGoldberg",
227227
"repoHost": "https://github.com",
228228
"repoType": "github",

.github/CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for your interest in contributing to `template-typescript-node-package`! 💖
3+
Thanks for your interest in contributing to `create-typescript-app`! 💖
44

55
> After this page, see [DEVELOPMENT.md](./DEVELOPMENT.md) for local development instructions.
66
@@ -10,7 +10,7 @@ This project contains a [Contributor Covenant code of conduct](./CODE_OF_CONDUCT
1010

1111
## Reporting Issues
1212

13-
Please do [report an issue on the issue tracker](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues/new/choose) if there's any bugfix, documentation improvement, or general enhancement you'd like to see in the repository! Please fully fill out all required fields in the most appropriate issue form.
13+
Please do [report an issue on the issue tracker](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/new/choose) if there's any bugfix, documentation improvement, or general enhancement you'd like to see in the repository! Please fully fill out all required fields in the most appropriate issue form.
1414

1515
## Sending Contributions
1616

@@ -22,8 +22,8 @@ There are two steps involved:
2222

2323
### Finding an Issue
2424

25-
With the exception of very small typos, all changes to this repository generally need to correspond to an [open issue marked as `accepting prs` on the issue tracker](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22accepting+prs%22).
26-
If this is your first time contributing, consider searching for [unassigned issues that also have the `good first issue` label](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22accepting+prs%22+label%3A%22good+first+issue%22+no%3Aassignee).
25+
With the exception of very small typos, all changes to this repository generally need to correspond to an [open issue marked as `accepting prs` on the issue tracker](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22accepting+prs%22).
26+
If this is your first time contributing, consider searching for [unassigned issues that also have the `good first issue` label](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22accepting+prs%22+label%3A%22good+first+issue%22+no%3Aassignee).
2727
If the issue you'd like to fix isn't found on the issue, see [Reporting Issues](#reporting-issues) for filing your own (please do!).
2828

2929
### Sending a Pull Request
@@ -34,7 +34,7 @@ Be sure to fill out the pull request template's requested information -- otherwi
3434
PRs are also expected to have a title that adheres to [commitlint](https://github.com/conventional-changelog/commitlint).
3535
Only PR titles need to be in that format, not individual commits.
3636
Don't worry if you get this wrong: you can always change the PR title after sending it.
37-
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/template-typescript-node-package/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.
37+
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/create-typescript-app/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.
3838

3939
#### Draft PRs
4040

.github/DEVELOPMENT.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
44

55
```shell
6-
git clone https://github.com/<your-name-here>/template-typescript-node-package
7-
cd template-typescript-node-package
6+
git clone https://github.com/<your-name-here>/create-typescript-app
7+
cd create-typescript-app
88
pnpm install
99
```
1010

@@ -165,7 +165,7 @@ To test out the script locally, run it from a different repository's directory:
165165

166166
```shell
167167
cd ../other-repo
168-
node ../template-typescript-node-package/bin/migrate.js
168+
node ../create-typescript-app/bin/migrate.js
169169
```
170170

171171
The migration script will work on any directory.
@@ -175,7 +175,7 @@ You can try it out in a blank directory with scripts like:
175175
cd ..
176176
mkdir temp
177177
cd temp
178-
node ../template-typescript-node-package/bin/migrate.js
178+
node ../create-typescript-app/bin/migrate.js
179179
```
180180

181181
#### Testing the Migration Script

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- Note: Please must use one of our issue templates to file an issue! 🛑 -->
2-
<!-- 👉 https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues/new/choose 👈 -->
2+
<!-- 👉 https://github.com/JoshuaKGoldberg/create-typescript-app/issues/new/choose 👈 -->
33
<!-- **Issues that should have been filed with a template will be closed without action, and we will ask you to use a template.** -->
44

55
<!-- This blank issue template is only for issues that don't fit any of the templates. -->

.github/ISSUE_TEMPLATE/01-bug.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
required: true
88
- label: I have pulled the latest `main` branch of the repository.
99
required: true
10-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
10+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aissue) and found none that matched my issue.
1111
required: true
1212
type: checkboxes
1313
- attributes:

.github/ISSUE_TEMPLATE/02-documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
options:
66
- label: I have pulled the latest `main` branch of the repository.
77
required: true
8-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
8+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aissue) and found none that matched my issue.
99
required: true
1010
type: checkboxes
1111
- attributes:

.github/ISSUE_TEMPLATE/03-feature.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
required: true
88
- label: I have pulled the latest `main` branch of the repository.
99
required: true
10-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
10+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aissue) and found none that matched my issue.
1111
required: true
1212
type: checkboxes
1313
- attributes:

.github/ISSUE_TEMPLATE/04-tooling.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
required: true
88
- label: I have pulled the latest `main` branch of the repository.
99
required: true
10-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
10+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aissue) and found none that matched my issue.
1111
required: true
1212
type: checkboxes
1313
- attributes:

.github/PULL_REQUEST_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!-- 👋 Hi, thanks for sending a PR to template-typescript-node-package! 💖.
1+
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖.
22
Please fill out all fields below and make sure each item is true and [x] checked.
33
Otherwise we may not be able to review your PR. -->
44

55
## PR Checklist
66

77
- [ ] Addresses an existing open issue: fixes #000
8-
- [ ] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
9-
- [ ] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken
8+
- [ ] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
9+
- [ ] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken
1010

1111
## Overview
1212

.github/workflows/post-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
1515
The release is available on:
1616
17-
* [GitHub releases](https://github.com/JoshuaKGoldberg/template-typescript-node-package/releases/tag/{release_tag})
18-
* [npm package (@latest dist-tag)](https://www.npmjs.com/package/template-typescript-node-package/v/${{ env.npm_version }})
17+
* [GitHub releases](https://github.com/JoshuaKGoldberg/create-typescript-app/releases/tag/{release_tag})
18+
* [npm package (@latest dist-tag)](https://www.npmjs.com/package/create-typescript-app/v/${{ env.npm_version }})
1919
2020
Cheers! 📦🚀
2121

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
script: |
2424
try {
2525
await github.request(
26-
`DELETE /repos/JoshuaKGoldberg/template-typescript-node-package/branches/main/protection`,
26+
`DELETE /repos/JoshuaKGoldberg/create-typescript-app/branches/main/protection`,
2727
);
2828
} catch (error) {
2929
if (!error.message?.includes?.("Branch not protected")) {
@@ -43,7 +43,7 @@ jobs:
4343
github-token: ${{ secrets.ACCESS_TOKEN }}
4444
script: |
4545
github.request(
46-
`PUT /repos/JoshuaKGoldberg/template-typescript-node-package/branches/main/protection`,
46+
`PUT /repos/JoshuaKGoldberg/create-typescript-app/branches/main/protection`,
4747
{
4848
allow_deletions: false,
4949
allow_force_pushes: true,
@@ -53,7 +53,7 @@ jobs:
5353
branch: "main",
5454
enforce_admins: false,
5555
owner: "JoshuaKGoldberg",
56-
repo: "template-typescript-node-package",
56+
repo: "create-typescript-app",
5757
required_conversation_resolution: true,
5858
required_linear_history: false,
5959
required_pull_request_reviews: null,

0 commit comments

Comments
 (0)