Skip to content

Commit 4d2d12f

Browse files
authored
Merge pull request #250 from SuperchupuDev/add-tsdown
Add tsdown to recognized build tools
2 parents 4a8afcd + 58dca0c commit 4d2d12f

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.changeset/tough-fans-dress.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@arethetypeswrong/core": patch
3+
---
4+
5+
Add tsdown to recognized build tools

packages/core/src/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ export type BuildTool =
3636
| "@microsoft/api-extractor"
3737
| "tshy"
3838
| "@rspack/cli"
39-
| "tsup";
39+
| "tsup"
40+
| "tsdown";
4041

4142
export interface Analysis {
4243
packageName: string;

packages/core/src/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,5 @@ export const allBuildTools = Object.keys({
167167
tshy: true,
168168
"@rspack/cli": true,
169169
tsup: true,
170+
tsdown: true,
170171
} satisfies Record<BuildTool, any>) as BuildTool[];

0 commit comments

Comments
 (0)