Skip to content

Commit

Permalink
fix: remove kill process logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Nov 7, 2024
1 parent 9ae8f2e commit be4e75c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions packages/@wroud/vite-plugin-tsc/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,7 @@ export function tscPlugin(
execaOptions,
);

tsProcess.catch((error) => {
if (!error.isGracefullyCanceled) {
logger.error("watch process failed.", {
timestamp: true,
error,
});
}
});
tsProcess.catch((error) => {});
}
}

Expand Down

0 comments on commit be4e75c

Please sign in to comment.