Skip to content

Commit df69146

Browse files
nodejs-github-botbengl
authored andcommitted
tools: update lint-md-dependencies to [email protected]
PR-URL: #43230 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
1 parent 09da764 commit df69146

File tree

3 files changed

+37
-38
lines changed

3 files changed

+37
-38
lines changed

tools/lint-md/lint-md.mjs

+3-4
Original file line numberDiff line numberDiff line change
@@ -4935,7 +4935,6 @@ const htmlBlockNames = [
49354935
'p',
49364936
'param',
49374937
'section',
4938-
'source',
49394938
'summary',
49404939
'table',
49414940
'tbody',
@@ -6712,7 +6711,7 @@ function createTokenizer(parser, initialize, from) {
67126711
construct.name &&
67136712
context.parser.constructs.disable.null.includes(construct.name)
67146713
) {
6715-
return nok()
6714+
return nok(code)
67166715
}
67176716
return construct.tokenize.call(
67186717
fields ? Object.assign(Object.create(context), fields) : context,
@@ -11223,7 +11222,7 @@ function peekDelete() {
1122311222
return '~'
1122411223
}
1122511224

11226-
function markdownTable(table, options = {}) {
11225+
function markdownTable(table, options) {
1122711226
const align = (options.align || []).concat();
1122811227
const stringLength = options.stringLength || defaultStringLength;
1122911228
const alignments = [];
@@ -21324,7 +21323,7 @@ function translateLevel(level) {
2132421323
has16m: level >= 3,
2132521324
};
2132621325
}
21327-
function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
21326+
function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true}) {
2132821327
const noFlagForceColor = envForceColor();
2132921328
if (noFlagForceColor !== undefined) {
2133021329
flagForceColor = noFlagForceColor;

tools/lint-md/package-lock.json

+33-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/lint-md/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"devDependencies": {
1717
"@rollup/plugin-commonjs": "^22.0.0",
1818
"@rollup/plugin-node-resolve": "^13.3.0",
19-
"rollup": "^2.74.1",
19+
"rollup": "^2.75.1",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
 (0)