Skip to content

Commit

Permalink
tools: update lint-md-dependencies to rollup@2.70.1
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
nodejs-github-bot authored and danielleadams committed Apr 24, 2022
1 parent f990308 commit 789e604
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 37 deletions.
6 changes: 3 additions & 3 deletions tools/lint-md/lint-md.mjs
Expand Up @@ -12627,12 +12627,12 @@ const remarkLintListItemBulletIndent = lintRule(
);
var remarkLintListItemBulletIndent$1 = remarkLintListItemBulletIndent;

var pointStart = point('start');
var pointEnd = point('end');
const pointStart = point('start');
const pointEnd = point('end');
function point(type) {
return point
function point(node) {
var point = (node && node.position && node.position[type]) || {};
const point = (node && node.position && node.position[type]) || {};
return {
line: point.line || null,
column: point.column || null,
Expand Down
78 changes: 45 additions & 33 deletions tools/lint-md/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/lint-md/package.json
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.70.0",
"rollup": "^2.70.1",
"rollup-plugin-cleanup": "^3.2.1"
}
}

0 comments on commit 789e604

Please sign in to comment.