Skip to content

Commit f3e5bf8

Browse files
fix: don't include ! in Knip files (#1861)
## PR Checklist - [x] Addresses an existing open issue: fixes #1852 - [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 💖
1 parent 8bd2b02 commit f3e5bf8

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

knip.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://unpkg.com/[email protected]/schema.json",
3-
"entry": ["script/*e2e.js", "src/index.ts!", "src/**/*.test.*"],
3+
"entry": ["script/*e2e.js", "src/index.ts", "src/**/*.test.*"],
44
"ignoreDependencies": ["all-contributors-cli", "cspell-populate-words"],
55
"ignoreExportsUsedInFile": { "interface": true, "type": true },
6-
"project": ["src/**/*.ts!", "script/**/*.js"]
6+
"project": ["src/**/*.ts", "script/**/*.js"]
77
}

script/__snapshots__/migrate-test-e2e.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,12 @@ exports[`expected file changes > knip.json 1`] = `
216216
@@ ... @@
217217
{
218218
"$schema": "https://unpkg.com/[email protected]/schema.json",
219-
- "entry": ["script/*e2e.js", "src/index.ts!", "src/**/*.test.*"],
219+
- "entry": ["script/*e2e.js", "src/index.ts", "src/**/*.test.*"],
220220
- "ignoreDependencies": ["all-contributors-cli", "cspell-populate-words"],
221-
+ "entry": ["src/index.ts!"],
221+
+ "entry": ["src/index.ts"],
222222
"ignoreExportsUsedInFile": { "interface": true, "type": true },
223-
- "project": ["src/**/*.ts!", "script/**/*.js"]
224-
+ "project": ["src/**/*.ts!"]
223+
- "project": ["src/**/*.ts", "script/**/*.js"]
224+
+ "project": ["src/**/*.ts"]
225225
}"
226226
`;
227227

src/next/blocks/blockKnip.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ export const blockKnip = base.createBlock({
5353
files: {
5454
"knip.json": JSON.stringify({
5555
$schema: `https://unpkg.com/knip@${getPackageDependency("knip")}/schema.json`,
56-
entry: ["src/index.ts!"],
56+
entry: ["src/index.ts"],
5757
ignoreExportsUsedInFile: {
5858
interface: true,
5959
type: true,
6060
},
61-
project: ["src/**/*.ts!"],
61+
project: ["src/**/*.ts"],
6262
}),
6363
},
6464
};

src/steps/writing/creation/createKnipConfig.test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ describe("createKnipConfig", () => {
2121

2222
expect(JSON.parse(packageJson)).toEqual({
2323
$schema: `https://unpkg.com/knip@${version}/schema.json`,
24-
entry: ["src/index.ts!"],
24+
entry: ["src/index.ts"],
2525
ignoreExportsUsedInFile: {
2626
interface: true,
2727
type: true,
2828
},
29-
project: ["src/**/*.ts!"],
29+
project: ["src/**/*.ts"],
3030
});
3131
});
3232

@@ -37,12 +37,12 @@ describe("createKnipConfig", () => {
3737

3838
expect(JSON.parse(packageJson)).toEqual({
3939
$schema: `https://unpkg.com/knip@latest/schema.json`,
40-
entry: ["src/index.ts!"],
40+
entry: ["src/index.ts"],
4141
ignoreExportsUsedInFile: {
4242
interface: true,
4343
type: true,
4444
},
45-
project: ["src/**/*.ts!"],
45+
project: ["src/**/*.ts"],
4646
});
4747
});
4848

@@ -55,12 +55,12 @@ describe("createKnipConfig", () => {
5555

5656
expect(JSON.parse(packageJson)).toEqual({
5757
$schema: `https://unpkg.com/knip@latest/schema.json`,
58-
entry: ["src/index.ts!"],
58+
entry: ["src/index.ts"],
5959
ignoreExportsUsedInFile: {
6060
interface: true,
6161
type: true,
6262
},
63-
project: ["src/**/*.ts!"],
63+
project: ["src/**/*.ts"],
6464
});
6565
});
6666
});

src/steps/writing/creation/createKnipConfig.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ export async function createKnipConfig() {
99

1010
return await formatJson({
1111
$schema: `https://unpkg.com/knip@${existingPackageJson?.devDependencies?.knip ?? "latest"}/schema.json`,
12-
entry: ["src/index.ts!"],
12+
entry: ["src/index.ts"],
1313
ignoreExportsUsedInFile: {
1414
interface: true,
1515
type: true,
1616
},
17-
project: ["src/**/*.ts!"],
17+
project: ["src/**/*.ts"],
1818
});
1919
}

0 commit comments

Comments
 (0)