mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-06-30 09:11:16 +00:00
Update metadata
This commit is contained in:
4
node_modules/p-limit/index.js
generated
vendored
4
node_modules/p-limit/index.js
generated
vendored
@@ -2,8 +2,8 @@
|
||||
const pTry = require('p-try');
|
||||
|
||||
const pLimit = concurrency => {
|
||||
if (concurrency < 1) {
|
||||
throw new TypeError('Expected `concurrency` to be a number from 1 and up');
|
||||
if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
|
||||
return Promise.reject(new TypeError('Expected `concurrency` to be a number from 1 and up'));
|
||||
}
|
||||
|
||||
const queue = [];
|
||||
|
||||
32
node_modules/p-limit/package.json
generated
vendored
32
node_modules/p-limit/package.json
generated
vendored
@@ -1,33 +1,27 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"p-limit@2.2.0",
|
||||
"/Users/imranismail/Projects/setup-kustomize"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "p-limit@2.2.0",
|
||||
"_id": "p-limit@2.2.0",
|
||||
"_from": "p-limit@^2.0.0",
|
||||
"_id": "p-limit@2.2.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==",
|
||||
"_integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==",
|
||||
"_location": "/p-limit",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "p-limit@2.2.0",
|
||||
"raw": "p-limit@^2.0.0",
|
||||
"name": "p-limit",
|
||||
"escapedName": "p-limit",
|
||||
"rawSpec": "2.2.0",
|
||||
"rawSpec": "^2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.2.0"
|
||||
"fetchSpec": "^2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/p-locate"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz",
|
||||
"_spec": "2.2.0",
|
||||
"_where": "/Users/imranismail/Projects/setup-kustomize",
|
||||
"_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz",
|
||||
"_shasum": "aa07a788cc3151c939b5131f63570f0dd2009537",
|
||||
"_spec": "p-limit@^2.0.0",
|
||||
"_where": "/Users/imranismail/Projects/setup-kustomize/node_modules/p-locate",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
@@ -36,9 +30,11 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/p-limit/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"p-try": "^2.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Run multiple promise-returning & async functions with limited concurrency",
|
||||
"devDependencies": {
|
||||
"ava": "^1.2.1",
|
||||
@@ -83,5 +79,5 @@
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd-check"
|
||||
},
|
||||
"version": "2.2.0"
|
||||
"version": "2.2.1"
|
||||
}
|
||||
|
||||
15
node_modules/p-limit/readme.md
generated
vendored
15
node_modules/p-limit/readme.md
generated
vendored
@@ -40,7 +40,8 @@ Returns a `limit` function.
|
||||
#### concurrency
|
||||
|
||||
Type: `number`<br>
|
||||
Minimum: `1`
|
||||
Minimum: `1`<br>
|
||||
Default: `Infinity`
|
||||
|
||||
Concurrency limit.
|
||||
|
||||
@@ -85,6 +86,14 @@ This package is only about limiting the number of concurrent executions, while `
|
||||
- [More…](https://github.com/sindresorhus/promise-fun)
|
||||
|
||||
|
||||
## License
|
||||
---
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-p-limit?utm_source=npm-p-limit&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user