feat/shape-node #36

Open
max wants to merge 12 commits from feat/shape-node into main
Showing only changes of commit 13c83efdb9 - Show all commits

View File

@@ -52,7 +52,7 @@
const match = line.match(regex); const match = line.match(regex);
if (!match) { if (!match) {
throw new Error('Invalid commit line format'); return undefined;
} }
const [, sha, link, description] = match; const [, sha, link, description] = match;