Skip to content

Commit d000c3b

Browse files
tools: update lint-md-dependencies to @rollup/[email protected] [email protected]
1 parent 6ee4228 commit d000c3b

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

tools/lint-md/lint-md.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ function wrap(middleware, callback) {
172172
parameters.push(done);
173173
}
174174
try {
175-
result = middleware(...parameters);
175+
result = middleware.apply(this, parameters);
176176
} catch (error) {
177-
const exception = error;
177+
const exception = (error);
178178
if (fnExpectsCallback && called) {
179179
throw exception
180180
}

tools/lint-md/package-lock.json

Lines changed: 26 additions & 26 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"vfile-reporter": "^7.0.3"
1515
},
1616
"devDependencies": {
17-
"@rollup/plugin-commonjs": "^21.0.1",
17+
"@rollup/plugin-commonjs": "^21.0.2",
1818
"@rollup/plugin-node-resolve": "^13.1.3",
19-
"rollup": "^2.67.3",
19+
"rollup": "^2.68.0",
2020
"rollup-plugin-cleanup": "^3.2.1"
2121
}
2222
}

0 commit comments

Comments
 (0)