Skip to content

Commit 41b6d9e

Browse files
nodejs-github-botsxa
authored andcommitted
tools: update lint-md rollup dependencies
Update to @rollup/[email protected] [email protected] PR-URL: #42141 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
1 parent d05758f commit 41b6d9e

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

tools/lint-md/lint-md.mjs

+2-2
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

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/lint-md/package.json

+2-2
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)