Bump packages to fix linter
This commit is contained in:
parent
ed9506bbaf
commit
0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions
9
node_modules/run-parallel/index.js
generated
vendored
9
node_modules/run-parallel/index.js
generated
vendored
|
|
@ -1,8 +1,11 @@
|
|||
/*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
module.exports = runParallel
|
||||
|
||||
const queueMicrotask = require('queue-microtask')
|
||||
|
||||
function runParallel (tasks, cb) {
|
||||
var results, pending, keys
|
||||
var isSync = true
|
||||
let results, pending, keys
|
||||
let isSync = true
|
||||
|
||||
if (Array.isArray(tasks)) {
|
||||
results = []
|
||||
|
|
@ -18,7 +21,7 @@ function runParallel (tasks, cb) {
|
|||
if (cb) cb(err, results)
|
||||
cb = null
|
||||
}
|
||||
if (isSync) process.nextTick(end)
|
||||
if (isSync) queueMicrotask(end)
|
||||
else end()
|
||||
}
|
||||
|
||||
|
|
|
|||
28
node_modules/run-parallel/package.json
generated
vendored
28
node_modules/run-parallel/package.json
generated
vendored
|
|
@ -1,20 +1,22 @@
|
|||
{
|
||||
"name": "run-parallel",
|
||||
"description": "Run an array of functions in parallel",
|
||||
"version": "1.1.9",
|
||||
"version": "1.2.0",
|
||||
"author": {
|
||||
"name": "Feross Aboukhadijeh",
|
||||
"email": "feross@feross.org",
|
||||
"url": "http://feross.org/"
|
||||
"url": "https://feross.org"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/feross/run-parallel/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": {
|
||||
"queue-microtask": "^1.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"airtap": "0.0.4",
|
||||
"airtap": "^3.0.0",
|
||||
"standard": "*",
|
||||
"tape": "^4.0.0"
|
||||
"tape": "^5.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/feross/run-parallel",
|
||||
"keywords": [
|
||||
|
|
@ -38,5 +40,19 @@
|
|||
"test-browser": "airtap -- test/*.js",
|
||||
"test-browser-local": "airtap --local -- test/*.js",
|
||||
"test-node": "tape test/*.js"
|
||||
}
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/feross"
|
||||
},
|
||||
{
|
||||
"type": "patreon",
|
||||
"url": "https://www.patreon.com/feross"
|
||||
},
|
||||
{
|
||||
"type": "consulting",
|
||||
"url": "https://feross.org/support"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue