Skip to content

Commit 7f45d69

Browse files
nodejs-github-botdanielleadams
authored andcommitted
tools: update lint-md-dependencies to [email protected]
PR-URL: #43313 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent d5d0f01 commit 7f45d69

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

tools/lint-md/lint-md.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6711,7 +6711,7 @@ function createTokenizer(parser, initialize, from) {
67116711
construct.name &&
67126712
context.parser.constructs.disable.null.includes(construct.name)
67136713
) {
6714-
return nok(code)
6714+
return nok()
67156715
}
67166716
return construct.tokenize.call(
67176717
fields ? Object.assign(Object.create(context), fields) : context,
@@ -11222,7 +11222,7 @@ function peekDelete() {
1122211222
return '~'
1122311223
}
1122411224

11225-
function markdownTable(table, options) {
11225+
function markdownTable(table, options = {}) {
1122611226
const align = (options.align || []).concat();
1122711227
const stringLength = options.stringLength || defaultStringLength;
1122811228
const alignments = [];
@@ -21323,7 +21323,7 @@ function translateLevel(level) {
2132321323
has16m: level >= 3,
2132421324
};
2132521325
}
21326-
function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true}) {
21326+
function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
2132721327
const noFlagForceColor = envForceColor();
2132821328
if (noFlagForceColor !== undefined) {
2132921329
flagForceColor = noFlagForceColor;

tools/lint-md/package-lock.json

+23-23
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.75.3",
19+
"rollup": "^2.75.5",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
 (0)