Skip to content

Commit

Permalink
tools: update lint-md rollup dependencies
Browse files Browse the repository at this point in the history
Update to @rollup/plugin-commonjs@21.0.2 rollup@2.68.0

PR-URL: #42141
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
nodejs-github-bot authored and danielleadams committed Apr 24, 2022
1 parent d40f5a1 commit 8532f83
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions tools/lint-md/lint-md.mjs
Expand Up @@ -172,9 +172,9 @@ function wrap(middleware, callback) {
parameters.push(done);
}
try {
result = middleware(...parameters);
result = middleware.apply(this, parameters);
} catch (error) {
const exception = error;
const exception = (error);
if (fnExpectsCallback && called) {
throw exception
}
Expand Down
52 changes: 26 additions & 26 deletions tools/lint-md/package-lock.json

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

4 changes: 2 additions & 2 deletions tools/lint-md/package.json
Expand Up @@ -14,9 +14,9 @@
"vfile-reporter": "^7.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.67.3",
"rollup": "^2.68.0",
"rollup-plugin-cleanup": "^3.2.1"
}
}

0 comments on commit 8532f83

Please sign in to comment.