Skip to content

Commit

Permalink
TODO: Manage TSDoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 23, 2024
1 parent 59c91c4 commit 0ec8c84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ export const runCommand = async (
stdout: (data) => {
outputStr += data.toString();
},
stderr: (data) => {
outputStr += data.toString();
},
},
});
} catch (error) {
Expand Down Expand Up @@ -200,6 +197,10 @@ export async function run(): Promise<void> {
)
: undefined;

// TODO: Manage TSDoc errors
// stderr: (data) => {
// outputStr += data.toString();
// },
const tsDocStr: StepResponse | undefined = doTests
? await commandComment({ label: "TSDoc", command: "npm run docs" })
: undefined;
Expand Down

0 comments on commit 0ec8c84

Please sign in to comment.