Skip to content

Commit

Permalink
build(type-generation): log errors and output properly (#6234)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemir authored Aug 6, 2024
1 parent 2709073 commit 9906899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/generate-declarations.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { globSync } = require("glob");

const generateDeclarations = () => {
execSync("tsc --project tsconfig.declarations.json", {
stdio: "inherit",
stdio: [process.stdin, process.stdout, process.stdout],
});
};

Expand Down

0 comments on commit 9906899

Please sign in to comment.