Skip to content

Commit 137c814

Browse files
nodejs-github-bottargos
authored andcommitted
tools: update lint-md-dependencies to [email protected]
PR-URL: #41315 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent b2a87f7 commit 137c814

File tree

3 files changed

+34
-27
lines changed

3 files changed

+34
-27
lines changed

tools/lint-md/lint-md.mjs

+8-1
Original file line numberDiff line numberDiff line change
@@ -11296,7 +11296,14 @@ const gfmTableFromMarkdown = {
1129611296
};
1129711297
function enterTable(token) {
1129811298
const align = token._align;
11299-
this.enter({type: 'table', align, children: []}, token);
11299+
this.enter(
11300+
{
11301+
type: 'table',
11302+
align: align.map((d) => (d === 'none' ? null : d)),
11303+
children: []
11304+
},
11305+
token
11306+
);
1130011307
this.setData('inTable', true);
1130111308
}
1130211309
function exitTable(token) {

tools/lint-md/package-lock.json

+25-25
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": "^21.0.1",
1818
"@rollup/plugin-node-resolve": "^13.1.1",
19-
"rollup": "^2.61.1",
19+
"rollup": "^2.62.0",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
 (0)