Skip to content

Commit 37d46ed

Browse files
committed
logs
1 parent 8e53fe7 commit 37d46ed

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

dist/index.js

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,6 @@ export async function run(): Promise<void> {
236236
)
237237
: undefined;
238238

239-
// TODO: Manage TSDoc errors
240-
// stderr: (data) => {
241-
// outputStr += data.toString();
242-
// },
243239
const typeDocStr: StepResponse | undefined = doTests
244240
? await typeDoc({
245241
label: "TypeDoc",

src/scripts/testing.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ export const typeDoc = async (command: Command): Promise<StepResponse> => {
9696
let outputStr =
9797
"<table><tr><th>File</th><th>Line</th><th>Column</th><th>Message</th></tr>";
9898
outputStr += commandOutput.split("\n").forEach((line) => {
99+
console.log("line: ", line);
99100
let match = line.match(/(.*):(\d+):(\d+) - (.*)/);
101+
console.log("match: ", match);
100102
if (match) {
101103
const [_, filePath, line, column, message] = match;
102104
return `<tr><td>${filePath}</td><td>${line}</td><td>${column}</td><td>${message}</td></tr>`;

0 commit comments

Comments
 (0)