Skip to content

Commit d5e4f6c

Browse files
nam-hleclaude
andcommitted
chore: correct task graph edges
typecheck depends on compile (eslint.config.ts imports the built eslint-plugin types), not on bundle - the dev type graph never needed the tsup outputs, so standalone typecheck no longer triggers a bundle. fixEslint gains the same compile edge eslint has; it loads the built plugin and crashed on clean checkouts. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 0129b4f commit d5e4f6c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

nadle.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ tasks.register("check").config({
5959

6060
tasks.register("typecheck", PnpxTask, { command: "tsgo", args: ["-b", "--noEmit"] }).config({
6161
group: "Building",
62-
dependsOn: ["bundle"],
62+
dependsOn: ["compile"],
6363
description: "Type-check all project references"
6464
});
6565

@@ -108,6 +108,7 @@ tasks.register("test").config({
108108

109109
tasks.register("fixEslint", PnpxTask, { command: "eslint", args: [".", "--quiet", "--fix"] }).config({
110110
group: "Formatting",
111+
dependsOn: ["compile"],
111112
description: "Fix lint issues with ESLint"
112113
});
113114

0 commit comments

Comments
 (0)