Skip to content

Commit 789e604

Browse files
nodejs-github-botdanielleadams
authored andcommitted
tools: update lint-md-dependencies to rollup@2.70.1
PR-URL: #42403 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent f990308 commit 789e604

File tree

3 files changed

+49
-37
lines changed

3 files changed

+49
-37
lines changed

tools/lint-md/lint-md.mjs

Lines changed: 3 additions & 3 deletions
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

Lines changed: 45 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/lint-md/package.json

Lines changed: 1 addition & 1 deletion
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)