Skip to content

Commit e1d935f

Browse files
fix: add test entries back to blockKnip
1 parent ed526ee commit e1d935f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/next/blocks/blockKnip.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("blockKnip", () => {
6161
},
6262
],
6363
"files": {
64-
"knip.json": "{"$schema":"https://unpkg.com/[email protected]/schema.json","entry":["src/index.ts"],"ignoreExportsUsedInFile":{"interface":true,"type":true},"project":["src/**/*.ts"]}",
64+
"knip.json": "{"$schema":"https://unpkg.com/[email protected]/schema.json","entry":["src/index.ts","src/**/*.test.*"],"ignoreExportsUsedInFile":{"interface":true,"type":true},"project":["src/**/*.ts"]}",
6565
},
6666
}
6767
`);
@@ -122,7 +122,7 @@ describe("blockKnip", () => {
122122
},
123123
],
124124
"files": {
125-
"knip.json": "{"$schema":"https://unpkg.com/[email protected]/schema.json","entry":["src/index.ts"],"ignoreDependencies":["abc","def"],"ignoreExportsUsedInFile":{"interface":true,"type":true},"project":["src/**/*.ts"]}",
125+
"knip.json": "{"$schema":"https://unpkg.com/[email protected]/schema.json","entry":["src/index.ts","src/**/*.test.*"],"ignoreDependencies":["abc","def"],"ignoreExportsUsedInFile":{"interface":true,"type":true},"project":["src/**/*.ts"]}",
126126
},
127127
}
128128
`);

src/next/blocks/blockKnip.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const blockKnip = base.createBlock({
5959
files: {
6060
"knip.json": JSON.stringify({
6161
$schema: `https://unpkg.com/knip@${getPackageDependency("knip")}/schema.json`,
62-
entry: ["src/index.ts"],
62+
entry: ["src/index.ts", "src/**/*.test.*"],
6363
ignoreDependencies,
6464
ignoreExportsUsedInFile: {
6565
interface: true,

0 commit comments

Comments
 (0)