Skip to content

Commit 01367af

Browse files
committed
Add tshy and rspack to build tools list
1 parent 7aa1bce commit 01367af

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/core/src/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ export type BuildTool =
3333
| "vite"
3434
| "snowpack"
3535
| "microbundle"
36-
| "@microsoft/api-extractor";
36+
| "@microsoft/api-extractor"
37+
| "tshy"
38+
| "@rspack/cli";
3739

3840
export interface Analysis {
3941
packageName: string;

packages/core/src/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,6 @@ export const allBuildTools = Object.keys({
164164
snowpack: true,
165165
microbundle: true,
166166
"@microsoft/api-extractor": true,
167+
tshy: true,
168+
"@rspack/cli": true,
167169
} satisfies Record<BuildTool, any>) as BuildTool[];

0 commit comments

Comments
 (0)