You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/CONTRIBUTING.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,14 @@ We don't use any kind of issue claiming system.
32
32
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.
33
33
34
34
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.
36
36
37
37
### Sending a Pull Request
38
38
39
39
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.
40
40
Be sure to fill out the pull request template's requested information -- otherwise your PR will likely be closed.
41
41
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).
43
43
Only PR titles need to be in that format, not individual commits.
44
44
Don't worry if you get this wrong: you can always change the PR title after sending it.
45
45
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/create-typescript-app/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.
Copy file name to clipboardexpand all lines: README.md
+23-25
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<h1align="center">Create TypeScript App</h1>
2
2
3
-
<palign="center">Quickstart-friendly TypeScript template with comprehensive formatting, linting, releases, testing, and other great tooling built-in. ✨</p>
3
+
<palign="center">Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. 💝</p>
4
4
5
5
<palign="center">
6
6
<a href="#contributors" target="_blank">
@@ -29,6 +29,9 @@
29
29
30
30
<imgalign="right"alt="Project logo: the TypeScript blue square with rounded corners, but a plus sign instead of 'TS'"src="./create-typescript-app.png">
31
31
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
+
32
35
## Getting Started
33
36
34
37
First make sure you have the following installed:
@@ -37,36 +40,31 @@ First make sure you have the following installed:
37
40
-[Node.js](https://nodejs.org)
38
41
-[pnpm](https://pnpm.io)
39
42
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
+
```
42
48
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:
46
51
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
50
55
51
-
If you don't want to use any particular tool, you can always remove it manually.
56
+
## Documentation
52
57
53
-
## Explainer
58
+
You can read more about `create-typescript-app` and the tooling it supports:
54
59
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.
-[**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.
-[**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.
Copy file name to clipboardexpand all lines: docs/FAQs.md
+14-8
Original file line number
Diff line number
Diff line change
@@ -9,25 +9,24 @@ If you think the tool would be broadly useful to most consumers of this template
9
9
10
10
## Is there a way to pull in template updates to previously created repositories?
11
11
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`.
14
14
15
15
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.
16
16
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`?
21
18
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.
23
22
24
23
### What determines which "base" a tool goes into?
25
24
26
25
The four bases correspond to what have seemed to be the most common user needs of template consumers:
27
26
28
27
1.**Minimum**: Developers who just want the barest of starting templates.
29
28
- 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.
31
30
2.**Common**: The common case of users who want the minimum tooling along with common repository management.
32
31
- Tooling added in this base should be essential for a TypeScript repository that additionally automates useful GitHub tasks: contributor recognition, release management, and testing.
33
32
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
45
44
- TypeScript and `pnpm run tsc`
46
45
47
46
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.
Copy file name to clipboardexpand all lines: docs/Options.md
+11-6
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
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.
4
4
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.
6
6
7
7
## Required Options
8
8
@@ -13,21 +13,24 @@ The following required options will be prompted for interactively if not provide
13
13
These required options determine how the creation script will set up and scaffold the repository:
14
14
15
15
-`--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
19
20
-`--create-repository`_(boolean)_: Whether to create a corresponding repository on github.com (if it doesn't yet exist)
20
21
-`--mode`: Whether to:
21
22
-`create` a new repository in a child directory
22
23
-`initialize` a freshly repository in the current directory
23
24
-`migrate` an existing repository in the current directory
24
25
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:
See [Tooling.md](./Tooling.md) for details on the tooling pieces and which bases they're included in.
33
+
31
34
### Core Options
32
35
33
36
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. ✨
49
52
50
53
The setup scripts also allow for optional overrides of the following inputs whose defaults are based on other options:
51
54
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"`)
53
56
-`--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()`)
54
57
-`--email`_(`string`)_: Email address to be listed as the point of contact in docs and packages (e.g. `[email protected]`)
55
58
- Optionally, `--email-github`_(`string`)_ and/or `--email-npm`_(`string`)_ may be provided to use different emails in `.md` files and `package.json`, respectively
0 commit comments