@krlwlfrt/async-pool
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -0,1 +1,5 @@ | ||
# [0.2.0](https://gitlab.com/krlwlfrt/async-pool/compare/v0.1.0...v0.2.0) (2019-11-25) | ||
# [0.1.0](https://gitlab.com/krlwlfrt/async-pool/compare/v0.0.3...v0.1.0) (2019-04-16) | ||
@@ -13,3 +17,3 @@ | ||
## [0.0.1](https://gitlab.com/krlwlfrt/async-pool/compare/562082b...v0.0.1) (2019-04-02) | ||
## [0.0.1](https://gitlab.com/krlwlfrt/async-pool/compare/562082b0dbfa5b1c0d983d717e7f5ebcf3f53769...v0.0.1) (2019-04-02) | ||
@@ -19,5 +23,5 @@ | ||
* add implementation ([562082b](https://gitlab.com/krlwlfrt/async-pool/commit/562082b)) | ||
* add implementation ([562082b](https://gitlab.com/krlwlfrt/async-pool/commit/562082b0dbfa5b1c0d983d717e7f5ebcf3f53769)) | ||
{ | ||
"name": "@krlwlfrt/async-pool", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Async pool for iterables", | ||
@@ -10,7 +10,11 @@ "main": "dist/async-pool.js", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'", | ||
"compile": "rimraf dist && tsc", | ||
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src", | ||
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'", | ||
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src", | ||
"prepublishOnly": "npm ci && npm run build", | ||
"test": "nyc mocha --require ts-node/register --ui mocha-typescript 'test/*.spec.ts'", | ||
"tslint": "tslint 'src/**/*.ts'" | ||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'", | ||
"check-configuration": "openstapps-configuration", | ||
"postversion": "npm run changelog", | ||
"preversion": "npm run prepublishOnly", | ||
"push": "git push && git push origin \"v$npm_package_version\"" | ||
}, | ||
@@ -27,19 +31,22 @@ "repository": { | ||
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>", | ||
"license": "MIT", | ||
"license": "GPL-3.0-only", | ||
"devDependencies": { | ||
"@types/chai": "4.1.7", | ||
"@types/chai-as-promised": "7.1.0", | ||
"@types/mocha": "5.2.6", | ||
"@openstapps/configuration": "0.21.1", | ||
"@types/chai": "4.2.5", | ||
"@types/chai-as-promised": "7.1.2", | ||
"@types/mocha": "5.2.7", | ||
"@types/node": "10.17.5", | ||
"chai": "4.2.0", | ||
"chai-as-promised": "7.1.1", | ||
"conventional-changelog-cli": "2.0.12", | ||
"mocha": "6.1.3", | ||
"conventional-changelog-cli": "2.0.28", | ||
"mocha": "6.2.2", | ||
"mocha-typescript": "1.1.17", | ||
"nyc": "14.0.0", | ||
"rimraf": "2.6.3", | ||
"ts-node": "8.1.0", | ||
"tslint": "5.15.0", | ||
"nyc": "14.1.1", | ||
"prepend-file-cli": "1.0.6", | ||
"rimraf": "3.0.0", | ||
"ts-node": "8.5.2", | ||
"tslint": "5.20.1", | ||
"tslint-eslint-rules": "5.4.0", | ||
"typedoc": "0.14.2", | ||
"typescript": "3.4.3" | ||
"typedoc": "0.15.3", | ||
"typescript": "3.7.2" | ||
}, | ||
@@ -50,2 +57,5 @@ "nyc": { | ||
"check-coverage": true, | ||
"exclude": [ | ||
"src/cli.ts" | ||
], | ||
"extension": [ | ||
@@ -64,4 +74,10 @@ ".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"statements": 95 | ||
}, | ||
"openstappsConfiguration": { | ||
"forPackaging": false | ||
} | ||
} |
@@ -0,1 +1,16 @@ | ||
/* | ||
* Copyright (C) 2019 Karl-Philipp Wulfert | ||
* This program is free software: you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the Free | ||
* Software Foundation, version 3. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with | ||
* this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
/** | ||
@@ -52,3 +67,3 @@ * Runs multiple promise-returning & async functions in a limited concurrency pool | ||
// wait for all promises to resolve and return their results | ||
return await Promise.all(promises); | ||
return Promise.all(promises); | ||
} |
Sorry, the diff of this file is too big to display
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
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
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
162507
9
4096
18
3
70