Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 63267df

Browse filesBrowse files
nodejs-github-botRafaelGSS
authored andcommitted
tools: update lint-md-dependencies to rollup@3.2.5
PR-URL: #45332 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
1 parent a7c5f31 commit 63267df
Copy full SHA for 63267df

File tree

Expand file treeCollapse file tree

3 files changed

+29
-15
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+29
-15
lines changed
Open diff view settings
Collapse file

‎tools/lint-md/lint-md.mjs‎

Copy file name to clipboardExpand all lines: tools/lint-md/lint-md.mjs
+15-1Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11097,8 +11097,22 @@ const gfmStrikethroughFromMarkdown = {
1109711097
enter: {strikethrough: enterStrikethrough},
1109811098
exit: {strikethrough: exitStrikethrough}
1109911099
};
11100+
const constructsWithoutStrikethrough = [
11101+
'autolink',
11102+
'destinationLiteral',
11103+
'destinationRaw',
11104+
'reference',
11105+
'titleQuote',
11106+
'titleApostrophe'
11107+
];
1110011108
const gfmStrikethroughToMarkdown = {
11101-
unsafe: [{character: '~', inConstruct: 'phrasing'}],
11109+
unsafe: [
11110+
{
11111+
character: '~',
11112+
inConstruct: 'phrasing',
11113+
notInConstruct: constructsWithoutStrikethrough
11114+
}
11115+
],
1110211116
handlers: {delete: handleDelete}
1110311117
};
1110411118
handleDelete.peek = peekDelete;
Collapse file

‎tools/lint-md/package-lock.json‎

Copy file name to clipboardExpand all lines: tools/lint-md/package-lock.json
+13-13Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎tools/lint-md/package.json‎

Copy file name to clipboardExpand all lines: tools/lint-md/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"devDependencies": {
1717
"@rollup/plugin-commonjs": "^23.0.2",
1818
"@rollup/plugin-node-resolve": "^15.0.1",
19-
"rollup": "^3.2.3",
19+
"rollup": "^3.2.5",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.