Skip to content

Commit 89e40bd

Browse files
nodejs-github-botdanielleadams
authored andcommitted
tools: update lint-md-dependencies to [email protected]
PR-URL: #42403 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent 0512873 commit 89e40bd

File tree

3 files changed

+49
-37
lines changed

3 files changed

+49
-37
lines changed

tools/lint-md/lint-md.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12627,12 +12627,12 @@ const remarkLintListItemBulletIndent = lintRule(
1262712627
);
1262812628
var remarkLintListItemBulletIndent$1 = remarkLintListItemBulletIndent;
1262912629

12630-
var pointStart = point('start');
12631-
var pointEnd = point('end');
12630+
const pointStart = point('start');
12631+
const pointEnd = point('end');
1263212632
function point(type) {
1263312633
return point
1263412634
function point(node) {
12635-
var point = (node && node.position && node.position[type]) || {};
12635+
const point = (node && node.position && node.position[type]) || {};
1263612636
return {
1263712637
line: point.line || null,
1263812638
column: point.column || null,

tools/lint-md/package-lock.json

+45-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": "^21.0.2",
1818
"@rollup/plugin-node-resolve": "^13.1.3",
19-
"rollup": "^2.70.0",
19+
"rollup": "^2.70.1",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
 (0)