Skip to content

Commit 0fffae0

Browse files
perf: use --no-dts in cleanup and pre-lint builds (#1255)
## PR Checklist - [x] Addresses an existing open issue: fixes #1162 - [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 Uses the lovely, newly-discovered-by-me `--no-dts` option. Now the builds done before CI linting (when `options.bin` is enabled) and in the cleanup commands should be much faster.
1 parent 98c7675 commit 0fffae0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
steps:
55
- uses: actions/checkout@v4
66
- uses: ./.github/actions/prepare
7-
- run: pnpm build || true
7+
- run: pnpm build --no-dts
88
- run: pnpm lint
99

1010
name: Lint

src/shared/createCleanupCommands.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe("createCleanupCommands", () => {
2020

2121
expect(actual).toEqual([
2222
"pnpm dedupe",
23-
"pnpm build",
23+
"pnpm build --no-dts",
2424
"pnpm lint --fix",
2525
"pnpm format --write",
2626
]);

src/shared/createCleanupCommands.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function createCleanupCommands({
88
// There's no need to dedupe when initializing from the fixed template
99
...(mode === "initialize" ? [] : ["pnpm dedupe"]),
1010
// n/no-missing-import rightfully reports on a missing the bin .js file
11-
...(bin ? ["pnpm build"] : []),
11+
...(bin ? ["pnpm build --no-dts"] : []),
1212
"pnpm lint --fix",
1313
"pnpm format --write",
1414
];

src/steps/writing/creation/dotGitHub/createWorkflows.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ describe("createWorkflows", () => {
216216
steps:
217217
- uses: actions/checkout@v4
218218
- uses: ./.github/actions/prepare
219-
- run: pnpm build || true
219+
- run: pnpm build --no-dts
220220
- run: pnpm lint
221221
222222
name: Lint

src/steps/writing/creation/dotGitHub/createWorkflows.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export function createWorkflows(options: Options) {
114114
}),
115115
"lint.yml": createWorkflowFile({
116116
name: "Lint",
117-
runs: [...(options.bin ? ["pnpm build || true"] : []), "pnpm lint"],
117+
runs: [...(options.bin ? ["pnpm build --no-dts"] : []), "pnpm lint"],
118118
}),
119119
...(!options.excludeLintKnip && {
120120
"lint-knip.yml": createWorkflowFile({

0 commit comments

Comments
 (0)