Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: update lint-md-dependencies to rollup@2.70.1 #42403

Merged
merged 1 commit into from Mar 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"
}
}