Skip to content

Commit 53618c4

Browse files
feat: add --exclude-templated-by option (#1724)
## PR Checklist - [x] Addresses an existing open issue: fixes #1714 - [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 Adds the option as described, with a unit test. 💖
1 parent b10aa13 commit 53618c4

14 files changed

+48
-3
lines changed

docs/Options.md

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ Alternately, you can bypass that prompt by providing any number of the following
101101
- `--exclude-lint-yml`: Don't apply linting and sorting to `*.yaml` and `*.yml` files.
102102
- `--exclude-releases`: Don't add release-it to generate changelogs, package bumps, and publishes based on conventional commits.
103103
- `--exclude-renovate`: Don't add a Renovate config to dependencies up-to-date with PRs.
104+
- `--exclude-templated-by`: Don't add a _"This package was templated with create-typescript-app"_ notice at the end of the README.md.
104105
- `--exclude-tests`: Don't add Vitest tooling for fast unit tests, configured with coverage tracking.
105106

106107
For example, initializing with all tooling except for `package.json` checks and Renovate:

src/bin/help.test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,10 @@ describe("logHelpText", () => {
271271
--exclude-renovate: Don't add a Renovate config to dependencies up-to-date with
272272
PRs.",
273273
],
274+
[
275+
"
276+
--exclude-templated-by: Don't add a _"This package was templated with create-typescript-app"_ notice at the end of the README.md.",
277+
],
274278
[
275279
"
276280
--exclude-tests: Don't add Vitest tooling for fast unit tests, configured

src/create/createRerunSuggestion.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const options = {
2727
excludeLintYml: false,
2828
excludeReleases: false,
2929
excludeRenovate: undefined,
30+
excludeTemplatedBy: undefined,
3031
excludeTests: undefined,
3132
funding: undefined,
3233
keywords: ["abc", "def ghi", "jkl mno pqr"],

src/shared/options/args.ts

+5
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,11 @@ export const allArgOptions = {
174174
docsSection: "opt-out",
175175
type: "boolean",
176176
},
177+
"exclude-templated-by": {
178+
description: `Don't add a _"This package was templated with create-typescript-app"_ notice at the end of the README.md.`,
179+
docsSection: "opt-out",
180+
type: "boolean",
181+
},
177182
"exclude-tests": {
178183
description: `Don't add Vitest tooling for fast unit tests, configured
179184
with coverage tracking.`,

src/shared/options/augmentOptionsWithExcludes.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const optionsBase = {
4444
excludeLintYml: undefined,
4545
excludeReleases: undefined,
4646
excludeRenovate: undefined,
47+
excludeTemplatedBy: undefined,
4748
excludeTests: undefined,
4849
funding: undefined,
4950
logo: undefined,
@@ -102,6 +103,7 @@ describe("augmentOptionsWithExcludes", () => {
102103
excludeLintYml: true,
103104
excludeReleases: true,
104105
excludeRenovate: true,
106+
excludeTemplatedBy: true,
105107
excludeTests: true,
106108
});
107109
});

src/shared/options/exclusionKeys.ts

+6
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ export const exclusionDescriptions: Record<ExclusionKey, ExclusionDescription> =
107107
hint: "--exclude-renovate",
108108
label: "Add a Renovate config to keep dependencies up-to-date with PRs.",
109109
},
110+
excludeTemplatedBy: {
111+
hint: "--exclude-templated-by",
112+
label:
113+
'Add a _"This package was templated with create-typescript-app"_ notice at the end of the README.md.',
114+
level: "minimal",
115+
},
110116
excludeTests: {
111117
hint: "--exclude-tests",
112118
label:

src/shared/options/optionsSchema.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export const optionsSchemaShape = {
3939
excludeLintYml: z.boolean().optional(),
4040
excludeReleases: z.boolean().optional(),
4141
excludeRenovate: z.boolean().optional(),
42+
excludeTemplatedBy: z.boolean().optional(),
4243
excludeTests: z.boolean().optional(),
4344
funding: z.string().optional(),
4445
guide: z.string().url().optional(),

src/shared/options/readOptions.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const emptyOptions = {
3131
excludeLintYml: undefined,
3232
excludeReleases: undefined,
3333
excludeRenovate: undefined,
34+
excludeTemplatedBy: undefined,
3435
excludeTests: undefined,
3536
funding: undefined,
3637
guide: undefined,
@@ -751,6 +752,7 @@ describe("readOptions", () => {
751752
"excludeLintYml": undefined,
752753
"excludeReleases": undefined,
753754
"excludeRenovate": undefined,
755+
"excludeTemplatedBy": undefined,
754756
"excludeTests": undefined,
755757
"funding": undefined,
756758
"github": "mock.git",

src/shared/options/readOptions.ts

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export async function readOptions(
8181
excludeLintYml: values["exclude-lint-yml"],
8282
excludeReleases: values["exclude-releases"],
8383
excludeRenovate: values["exclude-renovate"],
84+
excludeTemplatedBy: values["exclude-templated-by"],
8485
excludeTests: values["unit-tests"],
8586
funding: values.funding,
8687
guide: values.guide,

src/shared/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export interface Options {
7171
excludeLintYml?: boolean;
7272
excludeReleases?: boolean;
7373
excludeRenovate?: boolean;
74+
excludeTemplatedBy?: boolean;
7475
excludeTests?: boolean;
7576
funding?: string;
7677
guide?: OptionsGuide;

src/steps/updateReadme.test.ts

+18-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const options = {
2323
};
2424

2525
describe("updateReadme", () => {
26-
it("adds a notice when the file does not contain it already", async () => {
26+
it("adds a notice when the file does not contain it already and excludeTemplatedBy is not enabled", async () => {
2727
mockReadFileSafe.mockResolvedValue(
2828
"Existing JoshuaKGoldberg/create-typescript-app content.",
2929
);
@@ -44,6 +44,23 @@ describe("updateReadme", () => {
4444
`);
4545
});
4646

47+
it("doesn't add a notice when excludeTemplatedBy is enabled", async () => {
48+
mockReadFileSafe.mockResolvedValue(
49+
"Existing JoshuaKGoldberg/create-typescript-app content.",
50+
);
51+
52+
await updateReadme({ ...options, excludeTemplatedBy: true });
53+
54+
expect(mockWriteFile.mock.calls).toMatchInlineSnapshot(`
55+
[
56+
[
57+
"./README.md",
58+
"Existing NewOwner/create-typescript-app content.",
59+
],
60+
]
61+
`);
62+
});
63+
4764
it("doesn't add a notice when the file contains it already", async () => {
4865
mockReadFileSafe.mockResolvedValue(`
4966
Existing JoshuaKGoldberg/create-typescript-app content.

src/steps/updateReadme.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ export const endOfReadmeNotice = [
1717
export const endOfReadmeMatcher =
1818
/💙.+(?:based|built|templated).+(?:from|using|on|with).+create-typescript-app/;
1919

20-
export async function updateReadme(options: Pick<Options, "owner">) {
20+
export async function updateReadme(
21+
options: Pick<Options, "excludeTemplatedBy" | "owner">,
22+
) {
2123
let contents = await readFileSafe("./README.md", "");
2224

2325
contents = contents.replaceAll("JoshuaKGoldberg", options.owner);
2426

25-
if (!endOfReadmeMatcher.test(contents)) {
27+
if (!options.excludeTemplatedBy && !endOfReadmeMatcher.test(contents)) {
2628
contents += endOfReadmeNotice;
2729
}
2830

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

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const createOptions = (exclude: boolean) =>
3030
excludeLintYml: exclude,
3131
excludeReleases: exclude,
3232
excludeRenovate: exclude,
33+
excludeTemplatedBy: exclude,
3334
excludeTests: exclude,
3435
mode: "create",
3536
owner: "StubOwner",

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

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const createOptions = (exclude: boolean) =>
2626
excludeLintYml: exclude,
2727
excludeReleases: exclude,
2828
excludeRenovate: exclude,
29+
excludeTemplatedBy: exclude,
2930
excludeTests: exclude,
3031
mode: "create",
3132
owner: "StubOwner",

0 commit comments

Comments
 (0)