Skip to content

Commit 6541f8e

Browse files
docs: overhauled docs (#895)
## PR Checklist - [x] Addresses an existing open issue: fixes #856 - [x] 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) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Streamlines the flow of how devs will likely read through the docs. Most notably, adds a big `docs/Tooling.md` with a table explicitly describing what all the tooling pieces are.
1 parent 8f7692a commit 6541f8e

11 files changed

+368
-50
lines changed

.github/CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ We don't use any kind of issue claiming system.
3232
We've found in the past that they result in accidental ["licked cookie"](https://devblogs.microsoft.com/oldnewthing/20091201-00/?p=15843) situations where contributors claim an issue but run out of time or energy trying before sending a PR.
3333

3434
If an issue has been marked as `accepting prs` and an open PR does not exist, feel free to send a PR.
35-
You don't need to ask for permission.
35+
Please don't post comments asking for permission or stating you will work on an issue.
3636

3737
### Sending a Pull Request
3838

3939
Once you've identified an open issue accepting PRs that doesn't yet have a PR sent, you're free to send a pull request.
4040
Be sure to fill out the pull request template's requested information -- otherwise your PR will likely be closed.
4141

42-
PRs are also expected to have a title that adheres to [commitlint](https://github.com/conventional-changelog/commitlint).
42+
PRs are also expected to have a title that adheres to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0).
4343
Only PR titles need to be in that format, not individual commits.
4444
Don't worry if you get this wrong: you can always change the PR title after sending it.
4545
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/create-typescript-app/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.

.github/DEVELOPMENT.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,12 @@ pnpm run test:create
121121

122122
That end-to-end test executes `script/create-test-e2e.js`, which:
123123

124-
1. Runs the creation script to create a new `test-repository` child directory and repository
124+
1. Runs the creation script to create a new `test-repository` child directory and repository, capturing code coverage
125125
2. Asserts that commands such as `build` and `lint` each pass
126126

127+
The `pnpm run test:create` script is run in CI to ensure that templating changes are in sync with the template's actual files.
128+
See `.github/workflows/test-create.yml`.
129+
127130
### The Initialization Script
128131

129132
This template's "initialization" script is located in `src/initialize/`.
@@ -134,8 +137,6 @@ It uses [`tsx`](https://github.com/esbuild-kit/tsx) so you don't need to build f
134137
pnpm run initialize
135138
```
136139

137-
> 💡 Consider running `git add -A` to stage all local changes before running.
138-
139140
#### Testing the Initialization Script
140141

141142
You can run the end-to-end test for initializing locally on the command-line.
@@ -188,7 +189,7 @@ pnpm run test:migrate
188189

189190
That end-to-end test executes `script/migrate-test-e2e.js`, which:
190191

191-
1. Runs the migration script using `--skip-github-api` and other skip flags
192+
1. Runs the migration script using `--skip-github-api` and other skip flags, capturing code coverage
192193
2. Checks that only a small list of allowed files were changed
193194
3. Checks that the local repository's files were changed correctly (e.g. removed initialization-only files)
194195

README.md

+23-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1 align="center">Create TypeScript App</h1>
22

3-
<p align="center">Quickstart-friendly TypeScript template with comprehensive formatting, linting, releases, testing, and other great tooling built-in. ✨</p>
3+
<p align="center">Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. 💝</p>
44

55
<p align="center">
66
<a href="#contributors" target="_blank">
@@ -29,6 +29,9 @@
2929

3030
<img align="right" alt="Project logo: the TypeScript blue square with rounded corners, but a plus sign instead of 'TS'" src="./create-typescript-app.png">
3131

32+
`create-typescript-app` is a one-stop-shop solution to set up a new or existing repository with the latest and greatest TypeScript tooling.
33+
It includes options not just for building and testing but also GitHub repository templates, contributor recognition, automated release management, and more.
34+
3235
## Getting Started
3336

3437
First make sure you have the following installed:
@@ -37,36 +40,31 @@ First make sure you have the following installed:
3740
- [Node.js](https://nodejs.org)
3841
- [pnpm](https://pnpm.io)
3942

40-
This repository comes with three script forms to set up an existing or new repository with tooling.
41-
Use the corresponding docs page to get started:
43+
Then in an existing repository or in your directory where you'd like to make a new repository:
44+
45+
```shell
46+
npx create-typescript-app
47+
```
4248

43-
- [Creating from the terminal](./docs/Creation.md): creating a new repository locally on the command-line _(recommended)_
44-
- [Initializing from the template](./docs/Initialization.md): creating a new repository with the [_Use this template_](https://github.com/JoshuaKGoldberg/create-typescript-app/generate) button on GitHub
45-
- [Migrating an existing repository](./docs/Migration.md): adding this template's tooling on top of an existing repository
49+
That setup script will walk you through using the template.
50+
You can read more about the supported setup modes in their docs pages:
4651

47-
Note that this template is early stage, opinionated, and not endorsed by the TypeScript team.
48-
It can be configured to set up a _lot_ of tooling out of the box.
49-
Each of the included tools exists for a good reason and provides real value.
52+
- [**Creating from the terminal**](./docs/Creation.md): creating a new repository locally on the command-line _(recommended)_
53+
- [**Initializing from the template**](./docs/Initialization.md): creating a new repository with the [_Use this template_](https://github.com/JoshuaKGoldberg/create-typescript-app/generate) button on GitHub
54+
- [**Migrating an existing repository**](./docs/Migration.md): adding this template's tooling on top of an existing repository
5055

51-
If you don't want to use any particular tool, you can always remove it manually.
56+
## Documentation
5257

53-
## Explainer
58+
You can read more about `create-typescript-app` and the tooling it supports:
5459

55-
This template is available for anybody who wants to set up a Node application using TypeScript.
56-
It can set up the following tooling for you:
60+
1. [**Tooling**](./docs/Tooling.md): a breakdown of all the pieces this template can set up.
61+
2. [**Options**](./docs/Options.md): granular options to customize how the template is run.
62+
3. [**FAQs**](./docs/FAQs.md): frequently asked questions
5763

58-
- [**All Contributors**](https://allcontributors.org): Tracks various kinds of contributions and displays them in a nicely formatted table in the README.md.
59-
- [**ESLint**](https://eslint.org): Static analysis for JavaScript code, configured with [typescript-eslint](https://typescript-eslint.io) for TypeScript code and other general-use plugins.
60-
- [**Knip**](https://github.com/webpro/knip): Detects unused files, dependencies, and code exports.
61-
- [**Markdownlint**](https://github.com/DavidAnson/markdownlint): Static analysis for Markdown code.
62-
- [**pnpm**](https://pnpm.io): Disk-efficient package manager alternative.
63-
- [**PR Compliance Action**](https://github.com/mtfoley/pr-compliance-action): Checks PRs for compliance such as addressing a linked issue and proper title formatting.
64-
- [**Prettier**](https://prettier.io): Opinionated formatting for code, run on file save and as a Git commit hook via [husky](https://typicode.github.io/husky) and [lint-staged](https://github.com/okonet/lint-staged).
65-
- [**release-it**](https://github.com/release-it/release-it): Generates changelogs, bumps the package version, and publishes to GitHub and npm based on [conventional commits](https://www.conventionalcommits.org).
66-
- [**Renovate**](https://docs.renovatebot.com): Keeps dependencies up-to-date with PRs, configured to wait a few days after each update for safety.
67-
- [**tsup**](https://tsup.egoist.dev): Builds output definitions and JavaScript files using [esbuild](https://esbuild.github.io).
68-
- [**TypeScript**](https://typescriptlang.org): A typed superset of JavaScript, configured with strict compiler options.
69-
- [**Vitest**](https://vitest.dev): Fast unit tests, configured with coverage tracking and [console-fail-test](https://github.com/JoshuaKGoldberg/console-fail-test).
64+
> [!NOTE]
65+
> This template is early stage, opinionated, and not endorsed by the TypeScript team.
66+
> It can be configured to set up a _lot_ of tooling out of the box.
67+
> If you don't want to use any particular tool, you can always remove it manually.
7068
7169
## Development
7270

docs/Creation.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Creating from the Terminal
22

3-
You can run `npx create-typescript-app` in your terminal to interactively create a new repository:
3+
You can run `npx create-typescript-app` in your terminal to interactively create a new repository in a child directory:
44

55
```shell
66
npx create-typescript-app
@@ -28,3 +28,5 @@ For example, running the creation script and skipping all GitHub APIs:
2828
```shell
2929
npx create-typescript-app --mode create --skip-all-contributors-api --skip-github-api
3030
```
31+
32+
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.

docs/FAQs.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,24 @@ If you think the tool would be broadly useful to most consumers of this template
99

1010
## Is there a way to pull in template updates to previously created repositories?
1111

12-
Not yet.
13-
You can always copy & paste them in manually.
12+
Not directly.
13+
You can always copy & paste them in manually, and/or re-run `npx create-typescript-app --mode migrate`.
1414

1515
See [🚀 Feature: Add a script to sync the tooling updates from forked template repo #498](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/498): it will likely eventually be possible.
1616

17-
## Why does this package include so many tools?
18-
19-
This repository is meant to serve as a starter that includes all the general tooling a modern TypeScript/Node repository could possibly need.
20-
Each of the included tools exists for a good reason and provides real value.
17+
### What about `eslint-config-prettier`?
2118

22-
If you don't want to use any particular tool, you can always remove it manually.
19+
[`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) is an ESLint plugin that serves only to turn off all rules that are unnecessary or might conflict with formatters such as Prettier.
20+
None of the ESLint configs enabled by this repository's tooling leave any rules enabled that would need to be disabled.
21+
Using `eslint-config-prettier` would be redundant.
2322

2423
### What determines which "base" a tool goes into?
2524

2625
The four bases correspond to what have seemed to be the most common user needs of template consumers:
2726

2827
1. **Minimum**: Developers who just want the barest of starting templates.
2928
- They may be very new to TypeScript tooling, or they may have made an informed decision that the additional tooling isn't worth the complexity and/or time investment.
30-
- Tooling in this base is only what would be essential for a small TypeScript package that can be built, formatted, and linted.
29+
- Tooling in this base is only what would be essential for a small TypeScript package that can be built, formatted, linted, and released.
3130
2. **Common**: The common case of users who want the minimum tooling along with common repository management.
3231
- Tooling added in this base should be essential for a TypeScript repository that additionally automates useful GitHub tasks: contributor recognition, release management, and testing.
3332
3. **Everything**: Power users (including this repository) who want as much of the latest and greatest safety checks and standardization as possible.
@@ -45,3 +44,10 @@ The following pieces of this template's tooling don't have options to be removed
4544
- TypeScript and `pnpm run tsc`
4645

4746
If you have a strong desire to add an `--exclude-*` flag for any of them, please do [file a feature request](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/new?assignees=&labels=type%3A+feature&projects=&template=03-feature.yml&title=%F0%9F%9A%80+Feature%3A+%3Cshort+description+of+the+feature%3E).
47+
48+
## Why does this package include so many tools?
49+
50+
This repository is meant to serve as a starter that includes all the general tooling a modern TypeScript/Node repository could possibly need.
51+
Each of the included tools exists for a good reason and provides real value.
52+
53+
If you don't want to use any particular tool, you can always remove it manually.

docs/Initialization.md

+2
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ For example, running the initialization script and skipping all GitHub APIs:
4242
```shell
4343
pnpm run initialize --skip-all-contributors-api --skip-github-api
4444
```
45+
46+
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.

docs/Migration.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you have an existing repository that you'd like to give the files from this r
66
npx create-typescript-app
77
```
88

9-
> **Warning**
9+
> [!WARNING]
1010
> Migration will override many files in your repository.
1111
> You'll want to review each of the changes.
1212
> There will almost certainly be some incorrect changes you'll need to fix.
@@ -21,3 +21,5 @@ For example, running the migration script and skipping all GitHub APIs:
2121
```shell
2222
npx create-typescript-app --mode migrate --skip-all-contributors-api --skip-github-api
2323
```
24+
25+
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.

docs/Options.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All three of `create-typescript-app`'s setup scripts -[creation](./Creation.md), [initialization](./Initialization.md), and [migration](./Migration.md)- support a shared set of input options.
44

5-
> This page uses `npx create-typescript-app` in its code examples, but `pnpm run initialize` works the same.
5+
> This page uses `npx create-typescript-app` in its code examples, but initialization's `pnpm run initialize` works the same.
66
77
## Required Options
88

@@ -13,21 +13,24 @@ The following required options will be prompted for interactively if not provide
1313
These required options determine how the creation script will set up and scaffold the repository:
1414

1515
- `--base`: Whether to scaffold the repository with:
16-
- `everything` that comes with the template _(recommended)_
17-
- `minimum` amounts of tooling, essentially opting out of everything
18-
- `prompt` for which portions to exclude
16+
- `minimum`: Just the bare starter tooling most repositories should ideally include.
17+
- `common`: Important additions to the minimum starters such as releases and tests.
18+
- `everything`: The most thorough tooling imaginable: sorting, spellchecking, and more!
19+
- `prompt`: Fine-grained control over which tooling pieces to use
1920
- `--create-repository` _(boolean)_: Whether to create a corresponding repository on github.com (if it doesn't yet exist)
2021
- `--mode`: Whether to:
2122
- `create` a new repository in a child directory
2223
- `initialize` a freshly repository in the current directory
2324
- `migrate` an existing repository in the current directory
2425

25-
For example, scaffolding a full new repository in the current directory and also linking it to a new repository on github.com:
26+
For example, scaffolding a full new repository under the current directory and also linking it to a new repository on github.com:
2627

2728
```shell
2829
npx create-typescript-app --base everything --create-repository --mode create
2930
```
3031

32+
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.
33+
3134
### Core Options
3235

3336
These required options determine the options that will be substituted into the template's files:
@@ -49,7 +52,7 @@ That script will run completely autonomously, no prompted inputs required. ✨
4952

5053
The setup scripts also allow for optional overrides of the following inputs whose defaults are based on other options:
5154

52-
- `--access` _(`"public" | "restricted`)_: Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with (by default, `"public"`)
55+
- `--access` _(`"public" | "restricted"`)_: Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with (by default, `"public"`)
5356
- `--author` _(`string`)_: Username on npm to publish packages under (by default, an existing npm author, or the currently logged in npm user, or `owner.toLowerCase()`)
5457
- `--email` _(`string`)_: Email address to be listed as the point of contact in docs and packages (e.g. `[email protected]`)
5558
- Optionally, `--email-github` _(`string`)_ and/or `--email-npm` _(`string`)_ may be provided to use different emails in `.md` files and `package.json`, respectively
@@ -105,6 +108,8 @@ npx create-typescript-app --exclude-lint-package-json --exclude-lint-packages --
105108
> **Warning**
106109
> Specifying any `--exclude-*` flag on the command-line will cause the setup script to skip prompting for more excludes.
107110
111+
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.
112+
108113
### Skipping API Calls
109114

110115
> Alternately, see [Offline Mode](#offline-mode) to skip API calls without disabling features

0 commit comments

Comments
 (0)