@parameter1/base-cms-async
Advanced tools
Comparing version 3.0.0 to 4.0.0-beta.0
{ | ||
"name": "@parameter1/base-cms-async", | ||
"version": "3.0.0", | ||
"version": "4.0.0-beta.0", | ||
"description": "Promise wrappers for the async library.", | ||
@@ -10,2 +10,3 @@ "main": "src/index.js", | ||
"scripts": { | ||
"lint:fix": "yarn lint --fix", | ||
"lint": "eslint --ext .js --max-warnings 5 ./", | ||
@@ -20,3 +21,3 @@ "test": "yarn lint" | ||
}, | ||
"gitHead": "ce98550c2435936114d6d2b1321cb46341d4712c" | ||
"gitHead": "6b1c5270b9b3031b27d36ec109348efbd80f7933" | ||
} |
const series = require('async/series'); | ||
module.exports = tasks => new Promise((resolve, reject) => { | ||
module.exports = (tasks) => new Promise((resolve, reject) => { | ||
series(tasks, (err, res) => { | ||
@@ -5,0 +5,0 @@ if (err) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2903
2