Skip to content

Commit c0325c4

Browse files
feat: fully onboard to create (#1839)
## PR Checklist - [x] Addresses an existing open issue: fixes #1824 - [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 Completely removes the non-`create` portions, including the CLI. This repo now just provides Blocks and Presets in a Template per https://create.bingo. 💝 💖
1 parent 70e243c commit c0325c4

File tree

309 files changed

+756
-16363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

309 files changed

+756
-16363
lines changed

.github/DEVELOPMENT.md

-163
Original file line numberDiff line numberDiff line change
@@ -104,166 +104,3 @@ Add `--watch` to keep the type checker running in a watch mode that updates the
104104
```shell
105105
pnpm tsc --watch
106106
```
107-
108-
## Setup Scripts
109-
110-
As described in the `README.md` file and `docs/`, this template repository comes with three scripts that can set up an existing or new repository.
111-
112-
Each follows roughly the same general flow:
113-
114-
1. `bin/index.ts` uses `bin/mode.ts` to determine which of the three setup scripts to run
115-
2. `readOptions` parses in options from local files, Git commands, npm APIs, and/or files on disk
116-
3. `runOrRestore` wraps the setup script's main logic in a friendly prompt wrapper
117-
4. The setup script wraps each portion of its main logic with `withSpinner`
118-
- Each step of setup logic is generally imported from within `src/steps`
119-
5. A call to `outro` summarizes the results for the user
120-
121-
> **Warning**
122-
> Each setup script overrides many files in the directory they're run in.
123-
> Make sure to save any changes you want to preserve before running them.
124-
125-
### The Creation Script
126-
127-
> 📝 See [`docs/Creation.md`](../docs/Creation.md) for user documentation on the creation script.
128-
129-
This template's "creation" script is located in `src/create/`.
130-
You can run it locally with `node bin/index.js --mode create`.
131-
Note that files need to be built with `pnpm run build` beforehand.
132-
133-
#### Testing the Creation Script
134-
135-
You can run the end-to-end test for creation locally on the command-line.
136-
Note that the files need to be built with `pnpm run build` beforehand.
137-
138-
```shell
139-
pnpm run test:create
140-
```
141-
142-
That end-to-end test executes `script/create-test-e2e.ts`, which:
143-
144-
1. Runs the creation script to create a new `test-repository` child directory and repository, capturing code coverage
145-
2. Asserts that commands such as `build` and `lint` each pass
146-
147-
The `pnpm run test:create` script is run in CI to ensure that templating changes are in sync with the template's actual files.
148-
See `.github/workflows/ci.yml`'s `test_creation_script` job.
149-
150-
### The Initialization Script
151-
152-
> 📝 See [`docs/Initialization.md`](../docs/Initialization.md) for user documentation on the initialization script.
153-
154-
This template's "initialization" script is located in `src/initialize/`.
155-
You can run it locally with `pnpm run initialize`.
156-
It uses [`tsx`](https://github.com/esbuild-kit/tsx) so you don't need to build files before running.
157-
158-
```shell
159-
pnpm run initialize
160-
```
161-
162-
#### Testing the Initialization Script
163-
164-
You can run the end-to-end test for initializing locally on the command-line.
165-
Note that files need to be built with `pnpm run build` beforehand.
166-
167-
```shell
168-
pnpm run test:initialize
169-
```
170-
171-
That end-to-end test executes `script/initialize-test-e2e.ts`, which:
172-
173-
1. Runs the initialization script using `--skip-github-api` and other skip flags
174-
2. Checks that the local repository's files were changed correctly (e.g. removed initialization-only files)
175-
3. Runs `pnpm run lint:knip` to make sure no excess dependencies or files were left over
176-
4. Resets everything
177-
5. Runs initialization a second time, capturing test coverage
178-
179-
The `pnpm run test:initialize` script is run in CI to ensure that templating changes are in sync with the template's actual files.
180-
See `.github/workflows/ci.yml`'s `test_initialization_script` job.
181-
182-
### The Migration Script
183-
184-
> 📝 See [`docs/Migration.md`](../docs/Migration.md) for user documentation on the migration script.
185-
186-
This template's "migration" script is located in `src/migrate/`.
187-
Note that files need to be built with `pnpm run build` beforehand.
188-
189-
To test out the script locally, run it from a different repository's directory:
190-
191-
```shell
192-
cd ../other-repo
193-
node ../create-typescript-app/bin/migrate.js
194-
```
195-
196-
The migration script will work on any directory.
197-
You can try it out in a blank directory with scripts like:
198-
199-
```shell
200-
cd ..
201-
mkdir temp
202-
cd temp
203-
node ../create-typescript-app/bin/migrate.js
204-
```
205-
206-
#### Testing the Migration Script
207-
208-
> 💡 Seeing `Oh no! Running the migrate script unexpectedly modified:` errors?
209-
> _[Unexpected File Modifications](#unexpected-file-modifications)_ covers that below.
210-
211-
You can run the end-to-end test for migrating locally on the command-line:
212-
213-
```shell
214-
pnpm run test:migrate
215-
```
216-
217-
That end-to-end test executes `script/migrate-test-e2e.ts`, which:
218-
219-
1. Runs the migration script using `--skip-github-api` and other skip flags, capturing code coverage
220-
2. Checks that only a small list of allowed files were changed
221-
3. Checks that the local repository's files were changed correctly (e.g. removed initialization-only files)
222-
223-
The `pnpm run test:migrate` script is run in CI to ensure that templating changes are in sync with the template's actual files.
224-
See `.github/workflows/ci.yml`'s `test_migration_script` job.
225-
226-
> Tip: if the migration test is failing in CI and you don't see any errors, try [downloading the full logs](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/using-workflow-run-logs#downloading-logs).
227-
228-
##### Migration Snapshot Failures
229-
230-
The migration test uses the [Vitest file snapshot](https://vitest.dev/guide/snapshot#file-snapshots) in `script/__snapshots__/migrate-test-e2e.ts.snap` to store expected differences to this repository after running the migration script.
231-
The end-to-end migration test will fail any changes that don't keep the same differences in that snapshot.
232-
233-
You can update the snapshot file by:
234-
235-
1. Committing any changes to your local repository
236-
2. Running `pnpm i` and `pnpm build` if any updates have been made to the `package.json` or `src/` files, respectively
237-
3. Running `pnpm run test:migrate -u` to update the snapshot
238-
239-
At this point there will be some files changed:
240-
241-
- `script/__snapshots__/migrate-test-e2e.ts.snap` will have updates if any files mismatched templates
242-
- The actual updated files on disk will be there too
243-
244-
If the snapshot file changes are what you expected, then you can commit them.
245-
The rest of the file changes can be reverted.
246-
247-
> [🚀 Feature: Add a way to apply known file changes after migration #1184](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1184) tracks turning the test snapshot into a feature.
248-
249-
##### Unexpected File Modifications
250-
251-
The migration test also asserts that no files were unexpectedly changed.
252-
If you see a failure like:
253-
254-
```plaintext
255-
Oh no! Running the migrate script unexpectedly modified:
256-
- ...
257-
```
258-
259-
...then that means the file generated from templates differs from what's checked into the repository.
260-
This is most often caused by changes to templates not being applied to checked-in files too.
261-
262-
Templates for files are generally stored in [`src/steps/writing/creation`] under a path roughly corresponding to the file they describe.
263-
For example, the template for `tsup.config.ts` is stored in [`src/steps/writing/creation/createTsupConfig.ts`](../src/steps/writing/creation/createTsupConfig.ts).
264-
If the `createTsupConfig` function were to be modified without an equivalent change to `tsup.config.ts` -or vice-versa- then the migration test would report:
265-
266-
```plaintext
267-
Oh no! Running the migrate script unexpectedly modified:
268-
- tsup.config.ts
269-
```

.github/codecov.yml

-5
This file was deleted.

.github/workflows/ci.yml

-47
Original file line numberDiff line numberDiff line change
@@ -69,53 +69,6 @@ jobs:
6969
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7070
if: always()
7171
uses: codecov/codecov-action@v3
72-
with:
73-
flags: unit
74-
test_creation_script:
75-
name: Test Creation Script
76-
runs-on: ubuntu-latest
77-
steps:
78-
- uses: actions/checkout@v4
79-
- uses: ./.github/actions/prepare
80-
- run: pnpm run build
81-
- run: pnpm run test:create
82-
- env:
83-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
84-
if: always()
85-
uses: codecov/codecov-action@v3
86-
with:
87-
files: coverage-create/lcov.info
88-
flags: create
89-
test_initialization_script:
90-
name: Test Initialization Script
91-
runs-on: ubuntu-latest
92-
steps:
93-
- uses: actions/checkout@v4
94-
- uses: ./.github/actions/prepare
95-
- run: pnpm run build
96-
- run: pnpm run test:initialize
97-
- env:
98-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
99-
if: always()
100-
uses: codecov/codecov-action@v3
101-
with:
102-
files: coverage-initialize/lcov.info
103-
flags: initialize
104-
test_migration_script:
105-
name: Test Migration Script
106-
runs-on: ubuntu-latest
107-
steps:
108-
- uses: actions/checkout@v4
109-
- uses: ./.github/actions/prepare
110-
- run: pnpm run build
111-
- run: pnpm run test:migrate
112-
- env:
113-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
114-
if: always()
115-
uses: codecov/codecov-action@v3
116-
with:
117-
files: coverage-migrate/lcov.info
118-
flags: migrate
11972
type_check:
12073
name: Type Check
12174
runs-on: ubuntu-latest

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/coverage*
1+
/coverage
22
/lib
33
/node_modules

.prettierignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/.husky
2-
/coverage*
2+
/coverage
33
/lib
44
/pnpm-lock.yaml

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ First make sure you have the following installed:
3434
Then in an existing repository or in your directory where you'd like to make a new repository:
3535

3636
```shell
37-
npx create-typescript-app
37+
npx create typescript-app
3838
```
3939

40-
That setup script will walk you through using the template.
40+
That will launch `create-typescript-app` using the [`create` runner](https://create.bingo).
41+
4142
You can read more about the supported setup modes in their docs pages:
4243

4344
- [**Creating from the terminal**](./docs/Creation.md): creating a new repository locally on the command-line _(recommended)_
@@ -48,7 +49,7 @@ You can read more about the supported setup modes in their docs pages:
4849

4950
You can read more about `create-typescript-app` and the tooling it supports:
5051

51-
1. [**Tooling**](./docs/Tooling.md): a breakdown of all the pieces this template can set up.
52+
1. [**Blocks**](./docs/Blocks.md): a breakdown of all the pieces this template can set up.
5253
2. [**Options**](./docs/Options.md): granular options to customize how the template is run.
5354
3. [**FAQs**](./docs/FAQs.md): frequently asked questions
5455

bin/index.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
#!/usr/bin/env node
2-
import { bin } from "../lib/bin/index.js";
2+
import chalk from "chalk";
33

4-
process.exitCode = await bin(process.argv.slice(2));
4+
console.log(
5+
[
6+
"create-typescript-app is now run using ",
7+
chalk.bold("create"),
8+
".\n\nRun:\n ",
9+
chalk.bold("npx create", process.argv.slice(2).join(" ")),
10+
"\n\nYou can read more on:\n https://",
11+
chalk.bold("create.bingo"),
12+
"\n\nThanks for using create-typescript-app! 🎁",
13+
].join(""),
14+
);
15+
16+
process.exitCode = 1;

cspell.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
".all-contributorsrc",
55
".github",
66
"CHANGELOG.md",
7-
"coverage*",
7+
"coverage",
88
"lib",
99
"node_modules",
10-
"pnpm-lock.yaml",
11-
"script/__snapshots__"
10+
"pnpm-lock.yaml"
1211
],
1312
"words": [
1413
"Anson",
1514
"apexskier",
15+
"automerge",
1616
"dbaeumer",
1717
"infile",
1818
"joshuakgoldberg",
1919
"markdownlintignore",
2020
"mtfoley",
21-
"ruleset",
22-
"rulesets"
21+
"npmjs",
22+
"tseslint"
2323
]
2424
}

0 commit comments

Comments
 (0)