0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-11-21 22:01:30 +01:00

Update dependencies: @vercel/ncc to 0.31.1, eslint to 7.32.0, eslint-plugin-unicorn to 36.0.0.

This commit is contained in:
David Anson 2021-09-14 22:11:31 -07:00
parent b0bc151ba3
commit d0b666aa94
3 changed files with 38 additions and 5 deletions

View file

@ -82,6 +82,7 @@
"unicorn/no-for-loop": "error", "unicorn/no-for-loop": "error",
"unicorn/no-hex-escape": "error", "unicorn/no-hex-escape": "error",
"unicorn/no-instanceof-array": "error", "unicorn/no-instanceof-array": "error",
"unicorn/no-invalid-remove-event-listener": "error",
"unicorn/no-keyword-prefix": "error", "unicorn/no-keyword-prefix": "error",
"unicorn/no-lonely-if": "error", "unicorn/no-lonely-if": "error",
"unicorn/no-nested-ternary": "error", "unicorn/no-nested-ternary": "error",
@ -95,6 +96,9 @@
"unicorn/no-unreadable-array-destructuring": "error", "unicorn/no-unreadable-array-destructuring": "error",
"unicorn/no-unsafe-regex": "error", "unicorn/no-unsafe-regex": "error",
"unicorn/no-unused-properties": "error", "unicorn/no-unused-properties": "error",
"unicorn/no-useless-fallback-in-spread": "error",
"unicorn/no-useless-length-check": "error",
"unicorn/no-useless-spread": "error",
"unicorn/no-useless-undefined": "error", "unicorn/no-useless-undefined": "error",
"unicorn/no-zero-fractions": "error", "unicorn/no-zero-fractions": "error",
"unicorn/number-literal-case": "error", "unicorn/number-literal-case": "error",
@ -120,6 +124,7 @@
"unicorn/prefer-negative-index": "error", "unicorn/prefer-negative-index": "error",
"unicorn/prefer-node-protocol": "error", "unicorn/prefer-node-protocol": "error",
"unicorn/prefer-number-properties": "error", "unicorn/prefer-number-properties": "error",
"unicorn/prefer-object-from-entries": "error",
"unicorn/prefer-object-has-own": "error", "unicorn/prefer-object-has-own": "error",
"unicorn/prefer-optional-catch-binding": "error", "unicorn/prefer-optional-catch-binding": "error",
"unicorn/prefer-prototype-methods": "error", "unicorn/prefer-prototype-methods": "error",

32
dist/index.js vendored
View file

@ -3838,11 +3838,12 @@ function queueAsPromised (context, worker, concurrency) {
queue.push = push queue.push = push
queue.unshift = unshift queue.unshift = unshift
queue.drained = drained
return queue return queue
function push (value) { function push (value) {
return new Promise(function (resolve, reject) { var p = new Promise(function (resolve, reject) {
pushCb(value, function (err, result) { pushCb(value, function (err, result) {
if (err) { if (err) {
reject(err) reject(err)
@ -3851,10 +3852,17 @@ function queueAsPromised (context, worker, concurrency) {
resolve(result) resolve(result)
}) })
}) })
// Let's fork the promise chain to
// make the error bubble up to the user but
// not lead to a unhandledRejection
p.catch(noop)
return p
} }
function unshift (value) { function unshift (value) {
return new Promise(function (resolve, reject) { var p = new Promise(function (resolve, reject) {
unshiftCb(value, function (err, result) { unshiftCb(value, function (err, result) {
if (err) { if (err) {
reject(err) reject(err)
@ -3863,6 +3871,26 @@ function queueAsPromised (context, worker, concurrency) {
resolve(result) resolve(result)
}) })
}) })
// Let's fork the promise chain to
// make the error bubble up to the user but
// not lead to a unhandledRejection
p.catch(noop)
return p
}
function drained () {
var previousDrain = queue.drain
var p = new Promise(function (resolve) {
queue.drain = function () {
previousDrain()
resolve()
}
})
return p
} }
} }

View file

@ -21,9 +21,9 @@
"markdownlint-cli2": "~0.1.3" "markdownlint-cli2": "~0.1.3"
}, },
"devDependencies": { "devDependencies": {
"@vercel/ncc": "~0.29.0", "@vercel/ncc": "~0.31.1",
"eslint": "~7.31.0", "eslint": "~7.32.0",
"eslint-plugin-node": "~11.1.0", "eslint-plugin-node": "~11.1.0",
"eslint-plugin-unicorn": "~34.0.1" "eslint-plugin-unicorn": "~36.0.0"
} }
} }