Skip to content

Commit a0a65f5

Browse files
feat: add --exclude-build option (#1560)
## PR Checklist - [x] Addresses an existing open issue: fixes #1559 - [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 Renames the _"minimum"_ to _**"minimal"**_ to reflect that yiou actually can get _less_ than what's in it now.
1 parent 8fa7e04 commit a0a65f5

16 files changed

+73
-54
lines changed

docs/FAQs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,10 @@ Using `eslint-config-prettier` would be redundant.
164164

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

167-
1. **Minimum**: Developers who just want the barest of starting templates.
167+
1. **Minimal**: Developers who just want the barest of starting templates.
168168
- 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.
169169
- Tooling in this base is only what would be essential for a small TypeScript package that can be built, formatted, linted, and released.
170-
2. **Common**: The common case of users who want the minimum tooling along with common repository management.
170+
2. **Common**: The common case of users who want the minimal tooling along with common repository management.
171171
- Tooling added in this base should be essential for a TypeScript repository that additionally automates useful GitHub tasks: contributor recognition, release management, and testing.
172172
3. **Everything**: Power users (including this repository) who want as much of the latest and greatest safety checks and standardization as possible.
173173

docs/Options.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ 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-
- `minimum`: Just the bare starter tooling most repositories should ideally include
17-
- `common`: Important additions to the minimum starters such as releases and tests
16+
- `minimal`: Just the bare starter tooling most repositories should ideally include
17+
- `common`: Important additions to the minimal starters such as releases and tests
1818
- `everything`: The most thorough tooling imaginable: sorting, spellchecking, and more!
1919
- `prompt`: Fine-grained control over which tooling pieces to use
2020
- `--mode`: Whether to:
@@ -84,6 +84,7 @@ The setup scripts normally will prompt you to select how much of the tooling you
8484
Alternately, you can bypass that prompt by providing any number of the following CLI flags:
8585

8686
- `--exclude-all-contributors`: Don't add all-contributors to track contributions and display them in a README.md table.
87+
- `--exclude-build`: Don't add a build task to generate built `.js`, `.d.ts`, and related output.
8788
- `--exclude-compliance`: Don't add a GitHub Actions workflow to verify that PRs match an expected format.
8889
- `--exclude-lint-json`: Don't apply linting and sorting to `*.json` and `*.jsonc` files.
8990
- `--exclude-lint-knip`: Don't add Knip to detect unused files, dependencies, and code exports.

docs/Tooling.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Those template levels provide common presets of which tooling pieces to enable.
88

99
```plaintext
1010
◆ How much tooling would you like the template to set up for you?
11-
│ ○ minimum Just the bare starter tooling most repositories should ideally include.
12-
│ ○ common Important additions to the minimum starters such as releases and tests.
11+
│ ○ minimal Just the bare starter tooling most repositories should ideally include.
12+
│ ○ common Important additions to the minimal starters such as releases and tests.
1313
│ ○ everything The most thorough tooling imaginable: sorting, spellchecking, and more!
1414
│ ○ prompt (allow me to customize)
1515
1616
```
1717

1818
This table summarizes each tooling piece and which base levels they're included in:
1919

20-
| Tooling Piece | Exclusion Flag | Minimum | Common | Everything |
20+
| Tooling Piece | Exclusion Flag | Minimal | Common | Everything |
2121
| --------------------------------------------- | ------------------------------ | ------- | ------ | ---------- |
2222
| [Building](#building) | | ✔️ || 💯 |
2323
| [Compliance](#compliance) | `--exclude-compliance` | | | 💯 |
@@ -46,12 +46,12 @@ This table summarizes each tooling piece and which base levels they're included
4646

4747
See also [Options](./Options.md) for how to customize the way template is run.
4848

49-
## "Minimum" Base Level
49+
## "Minimal" Base Level
5050

5151
These tooling pieces are the ones that most repositories should generally always have enabled.
5252
Other pieces of tooling are likely to not work as well (or at all) if these are removed.
5353

54-
The _"minimum"_ base is best suited for projects that are very small and not likely to change very frequently.
54+
The _"minimal"_ base is best suited for projects that are very small and not likely to change very frequently.
5555
However, they'll be missing out on many of the great tooling pieces enabled in more comprehensive bases.
5656
We strongly recommend using at least the [_"common"_ base level](#common-base-level) instead for most repositories.
5757

src/bin/help.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ describe("logHelpText", () => {
6262
"
6363
--base (string): Whether to scaffold the repository with:
6464
• everything: that comes with the template (recommended)
65-
• minimum: amounts of tooling, essentially opting out of everything
65+
• common: additions to the minimal starters such as releases and tests
66+
• minimal: amounts of tooling, essentially opting out of everything
6667
• prompt: for which portions to exclude",
6768
],
6869
[

src/create/createRerunSuggestion.test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ describe("createRerunSuggestion", () => {
133133
);
134134
});
135135

136-
it("does not list all excludes when using minimum base", () => {
137-
const minimum = createRerunSuggestion({
138-
base: "minimum",
139-
...getExclusions(options, "minimum"),
136+
it("does not list all excludes when using minimal base", () => {
137+
const minimal = createRerunSuggestion({
138+
base: "minimal",
139+
...getExclusions(options, "minimal"),
140140
excludeLintKnip: undefined,
141141
});
142142

143-
expect(minimum).toMatchInlineSnapshot(
144-
`"npx create-typescript-app --base minimum"`,
143+
expect(minimal).toMatchInlineSnapshot(
144+
`"npx create-typescript-app --base minimal"`,
145145
);
146146
});
147147

src/shared/options/args.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export const allArgOptions = {
2626
• everything: that comes with the template (${chalk.cyanBright.bold(
2727
"recommended",
2828
)})
29-
• minimum: amounts of tooling, essentially opting out of everything
29+
• common: additions to the minimal starters such as releases and tests
30+
• minimal: amounts of tooling, essentially opting out of everything
3031
• prompt: for which portions to exclude`,
3132
docsSection: "core",
3233
type: "string",

src/shared/options/augmentOptionsWithExcludes.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const optionsBase = {
2727
2828
},
2929
excludeAllContributors: undefined,
30+
excludeBuild: undefined,
3031
excludeCompliance: undefined,
3132
excludeLintESLint: undefined,
3233
excludeLintJSDoc: undefined,
@@ -84,6 +85,7 @@ describe("augmentOptionsWithExcludes", () => {
8485
...optionsBase,
8586
base,
8687
excludeAllContributors: true,
88+
excludeBuild: true,
8789
excludeCompliance: true,
8890
excludeLintESLint: true,
8991
excludeLintJSDoc: true,
@@ -141,10 +143,10 @@ describe("augmentOptionsWithExcludes", () => {
141143
});
142144
});
143145

144-
it("uses the 'minimum' base without prompting when provided manually", async () => {
146+
it("uses the 'minimal' base without prompting when provided manually", async () => {
145147
const options = {
146148
...optionsBase,
147-
base: "minimum",
149+
base: "minimal",
148150
} satisfies Options;
149151

150152
const actual = await augmentOptionsWithExcludes(options);

src/shared/options/augmentOptionsWithExcludes.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ export async function augmentOptionsWithExcludes(
4747
},
4848
{
4949
label: makeLabel(
50-
"minimum",
50+
"minimal",
5151
"Just bare starter tooling: building, formatting, linting, and type checking.",
5252
),
53-
value: "minimum",
53+
value: "minimal",
5454
},
5555
{
5656
label: makeLabel("prompt", "(allow me to customize)"),
@@ -64,8 +64,8 @@ export async function augmentOptionsWithExcludes(
6464
case undefined:
6565
return undefined;
6666
case "common":
67-
case "minimum":
6867
case "everything":
68+
case "minimal":
6969
return {
7070
...options,
7171
base,

src/shared/options/exclusionKeys.ts

+31-21
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export type ExclusionKey = `exclude${string}` & keyof Options;
55
export interface ExclusionDescription {
66
hint: string;
77
label: string;
8-
uncommon?: true;
8+
level?: "common" | "minimal";
99
}
1010

1111
export const exclusionDescriptions: Record<ExclusionKey, ExclusionDescription> =
@@ -15,28 +15,33 @@ export const exclusionDescriptions: Record<ExclusionKey, ExclusionDescription> =
1515
label:
1616
"Add all-contributors to track contributions and display them in a README.md table.",
1717
},
18+
excludeBuild: {
19+
hint: "--exclude-build",
20+
label: "Add a tsup build step to generate built output files.",
21+
level: "minimal",
22+
},
1823
excludeCompliance: {
1924
hint: "--exclude-compliance",
2025
label:
2126
"Add a GitHub Actions workflow to verify that PRs match an expected format.",
22-
uncommon: true,
27+
level: "common",
2328
},
2429
excludeLintESLint: {
2530
hint: "--exclude-lint-eslint",
2631
label:
2732
"Include eslint-plugin-eslint-comment to enforce good practices around ESLint comment directives.",
28-
uncommon: true,
33+
level: "common",
2934
},
3035
excludeLintJSDoc: {
3136
hint: "--exclude-lint-jsdoc",
3237
label:
3338
"Include eslint-plugin-jsdoc to enforce good practices around JSDoc comments.",
34-
uncommon: true,
39+
level: "common",
3540
},
3641
excludeLintJson: {
3742
hint: "--exclude-lint-json",
3843
label: "Apply linting and sorting to *.json and *.jsonc files.",
39-
uncommon: true,
44+
level: "common",
4045
},
4146
excludeLintKnip: {
4247
hint: "--exclude-lint-knip",
@@ -45,53 +50,53 @@ export const exclusionDescriptions: Record<ExclusionKey, ExclusionDescription> =
4550
excludeLintMd: {
4651
hint: "--exclude-lint-md",
4752
label: "Apply linting to *.md files.",
48-
uncommon: true,
53+
level: "common",
4954
},
5055
excludeLintPackageJson: {
5156
hint: "--exclude-lint-package-json",
5257
label:
5358
"Add eslint-plugin-package-json to lint for package.json correctness.",
54-
uncommon: true,
59+
level: "common",
5560
},
5661
excludeLintPackages: {
5762
hint: "--exclude-lint-packages",
5863
label:
5964
"Add a pnpm dedupe workflow to ensure packages aren't duplicated unnecessarily.",
60-
uncommon: true,
65+
level: "common",
6166
},
6267
excludeLintPerfectionist: {
6368
hint: "--exclude-lint-perfectionist",
6469
label:
6570
"Apply eslint-plugin-perfectionist to ensure imports, keys, and so on are in sorted order.",
66-
uncommon: true,
71+
level: "common",
6772
},
6873
excludeLintRegex: {
6974
hint: "--exclude-lint-regex",
7075
label:
7176
"Include eslint-plugin-regex to enforce good practices around regular expressions.",
72-
uncommon: true,
77+
level: "common",
7378
},
7479
excludeLintSpelling: {
7580
hint: "--exclude-lint-spelling",
7681
label: "Add cspell to spell check against dictionaries of known words.",
77-
uncommon: true,
82+
level: "common",
7883
},
7984
excludeLintStrict: {
8085
hint: "--exclude-lint-strict",
8186
label:
8287
"Include strict logical lint rules such as typescript-eslint's strict config. ",
83-
uncommon: true,
88+
level: "common",
8489
},
8590
excludeLintStylistic: {
8691
hint: "--exclude-lint-stylistic",
8792
label:
8893
"Include stylistic lint rules such as typescript-eslint's stylistic config.",
89-
uncommon: true,
94+
level: "common",
9095
},
9196
excludeLintYml: {
9297
hint: "--exclude-lint-yml",
9398
label: "Apply linting and sorting to *.yaml and *.yml files.",
94-
uncommon: true,
99+
level: "common",
95100
},
96101
excludeReleases: {
97102
hint: "--exclude-releases",
@@ -122,20 +127,25 @@ export function getExclusions(
122127
return {
123128
...Object.fromEntries(
124129
exclusionKeys
125-
.filter((exclusion) => exclusionDescriptions[exclusion].uncommon)
130+
.filter(
131+
(exclusion) =>
132+
exclusionDescriptions[exclusion].level === "common",
133+
)
126134
.map((exclusion) => [exclusion, options[exclusion] ?? true]),
127135
),
128136
};
129-
case "minimum":
137+
case "minimal":
130138
return {
131139
...Object.fromEntries(
132-
exclusionKeys.map((exclusion) => [
133-
exclusion,
134-
options[exclusion] ?? true,
135-
]),
140+
exclusionKeys
141+
.filter(
142+
(exclusion) =>
143+
exclusionDescriptions[exclusion].level !== "minimal",
144+
)
145+
.map((exclusion) => [exclusion, options[exclusion] ?? true]),
136146
),
137147
};
138-
// We only really care about exclusions on the common and minimum bases
148+
// We only really care about exclusions on the common and minimal bases
139149
default:
140150
return {};
141151
}

src/shared/options/getBase.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vi.mock("../packages.js", () => ({
1010
}));
1111

1212
describe("getBase", () => {
13-
it("should return minimum with minimum scripts", async () => {
13+
it("should return minimal with minimal scripts", async () => {
1414
mockReadPackageData.mockImplementationOnce(() =>
1515
Promise.resolve({
1616
scripts: {
@@ -21,7 +21,7 @@ describe("getBase", () => {
2121
}),
2222
);
2323

24-
expect(await getBase()).toBe("minimum");
24+
expect(await getBase()).toBe("minimal");
2525
});
2626

2727
it("should return common with common scripts", async () => {

src/shared/options/getBase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ export async function getBase(): Promise<OptionsBase> {
3030
return "common";
3131
}
3232

33-
return "minimum";
33+
return "minimal";
3434
}

src/shared/options/optionsSchema.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const optionsSchemaShape = {
88
.union([
99
z.literal("common"),
1010
z.literal("everything"),
11-
z.literal("minimum"),
11+
z.literal("minimal"),
1212
z.literal("prompt"),
1313
])
1414
.optional(),
@@ -22,6 +22,7 @@ export const optionsSchemaShape = {
2222
})
2323
.optional(),
2424
excludeAllContributors: z.boolean().optional(),
25+
excludeBuild: z.boolean().optional(),
2526
excludeCompliance: z.boolean().optional(),
2627
excludeLintESLint: z.boolean().optional(),
2728
excludeLintJSDoc: z.boolean().optional(),

src/shared/options/readOptions.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ describe("readOptions", () => {
588588
...emptyOptions,
589589
...mockOptions,
590590
access: "public",
591-
base: "minimum",
591+
base: "minimal",
592592
description: "mock",
593593
directory: "mock",
594594
email: {
@@ -642,7 +642,7 @@ describe("readOptions", () => {
642642
...emptyOptions,
643643
...mockOptions,
644644
access: "public",
645-
base: "minimum",
645+
base: "minimal",
646646
description,
647647
directory: repository,
648648
email: {
@@ -700,7 +700,7 @@ describe("readOptions", () => {
700700
...mockOptions,
701701
access: "public",
702702
auto: true,
703-
base: "minimum",
703+
base: "minimal",
704704
description,
705705
directory: repository,
706706
email: {
@@ -725,7 +725,7 @@ describe("readOptions", () => {
725725
"access": "public",
726726
"author": undefined,
727727
"auto": true,
728-
"base": "minimum",
728+
"base": "minimal",
729729
"bin": undefined,
730730
"description": "Test description.",
731731
"directory": "test-repository",

src/shared/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface PartialPackageData {
2525

2626
export type OptionsAccess = "public" | "restricted";
2727

28-
export type OptionsBase = "common" | "everything" | "minimum" | "prompt";
28+
export type OptionsBase = "common" | "everything" | "minimal" | "prompt";
2929

3030
export interface OptionsEmail {
3131
github: string;
@@ -54,6 +54,7 @@ export interface Options {
5454
directory: string;
5555
email: OptionsEmail;
5656
excludeAllContributors?: boolean;
57+
excludeBuild?: boolean;
5758
excludeCompliance?: boolean;
5859
excludeLintESLint?: boolean;
5960
excludeLintJSDoc?: boolean;

0 commit comments

Comments
 (0)