We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77af296 commit 603cc37Copy full SHA for 603cc37
src/utils.js
@@ -53,10 +53,10 @@ const matchMarkdownLinks = (message) => {
53
const links = matches
54
? matches.map((match) => {
55
const i = singleMatch.exec(match);
56
- return i && i[2];
+ return i && [i[1], i[2]];
57
})
58
: [];
59
- return links;
+ return links.flat();
60
};
61
62
/** @type {(message: string) => (string|null)[]} */
tsconfig.json
@@ -15,7 +15,7 @@
15
"emitDeclarationOnly": true,
16
"noEmitOnError": true,
17
"skipLibCheck": true,
18
- "lib": ["es2015", "dom"],
+ "lib": ["es2020", "dom"],
19
"paths": {
20
"*": ["src/@types/*"],
21
"types": ["types/index.d.ts"]
0 commit comments