Skip to content

Commit bbd98bf

Browse files
chore: update dev dependencies (#38)
1 parent d91e605 commit bbd98bf

15 files changed

+72
-71
lines changed

Diff for: docs/rules/no-async-await.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Example of **correct** code:
1717

1818
```js
1919
function fetchJSON(url) {
20-
return fetch(url).then(res => res.json());
20+
return fetch(url).then((res) => res.json());
2121
}
2222
```

Diff for: lib/rules/consistent-component-name.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939

4040
const { id } = node;
4141

42-
const reportUnexpectedName = fix => {
42+
const reportUnexpectedName = (fix) => {
4343
context.report({
4444
node,
4545
messageId: 'unexpectedName',
@@ -52,7 +52,7 @@ module.exports = {
5252

5353
const isAnonymousClass = id === null;
5454
if (isAnonymousClass) {
55-
return reportUnexpectedName(fixer => {
55+
return reportUnexpectedName((fixer) => {
5656
// Find the "class" token in the class declaration AST node and insert
5757
// the component name after it.
5858
const classToken = sourceCode.getFirstToken(node);
@@ -62,7 +62,7 @@ module.exports = {
6262

6363
const isNamingConsistent = id.name === expectComponentName;
6464
if (!isNamingConsistent) {
65-
return reportUnexpectedName(fixer => {
65+
return reportUnexpectedName((fixer) => {
6666
// Replace the existing class name
6767
return fixer.replaceText(id, expectComponentName);
6868
});

Diff for: lib/rules/no-api-reassignments.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = {
8585
if (
8686
classScope &&
8787
classScope.publicProperties.some(
88-
prop => prop.name === propertyName && prop.type !== 'method',
88+
(prop) => prop.name === propertyName && prop.type !== 'method',
8989
)
9090
) {
9191
context.report({

Diff for: lib/rules/no-async-await.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
},
2020

2121
create(context) {
22-
const reportAsyncAwait = node => {
22+
const reportAsyncAwait = (node) => {
2323
if (node.async) {
2424
context.report({
2525
node,

Diff for: lib/rules/no-async-operation.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = {
3333

3434
// Retrieve the identifier in the context of the current scope
3535
const scope = context.getScope();
36-
const ref = scope.references.find(r => r.identifier === node);
36+
const ref = scope.references.find((r) => r.identifier === node);
3737

3838
// If the reference is not resolved, or if it is resolved in the global scope it means the
3939
// identifier is global. ESLint automatically add global properties in the global scope
@@ -70,8 +70,9 @@ module.exports = {
7070
if (isObjectGlobalObject && isPropertyRestrictedApi) {
7171
context.report({
7272
node,
73-
message: `Restricted async operation "${property.name ||
74-
property.value}"`,
73+
message: `Restricted async operation "${
74+
property.name || property.value
75+
}"`,
7576
});
7677
}
7778
}

Diff for: lib/rules/no-inner-html.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ module.exports = {
2626

2727
create(context) {
2828
return {
29-
'MemberExpression > Identifier': function(node) {
29+
'MemberExpression > Identifier': function (node) {
3030
if (isInnerHtmlForm(node.name)) {
3131
context.report({
3232
node: node,
3333
message: "Using 'innerHTML/outputHTML/insertAdjacentHTML' is not allowed",
3434
});
3535
}
3636
},
37-
'MemberExpression > Literal': function(node) {
37+
'MemberExpression > Literal': function (node) {
3838
if (isInnerHtmlForm(node.value)) {
3939
context.report({
4040
node: node,

Diff for: lib/rules/no-leaky-event-listeners.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
scope = scope.upper;
3333
}
3434

35-
return scope.through.find(variable => variable.identifier === identifier);
35+
return scope.through.find((variable) => variable.identifier === identifier);
3636
}
3737

3838
/**

Diff for: lib/rules/no-unexpected-wire-adapter-usages.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module.exports = {
7272
}
7373

7474
// Ignore imported identifier, if it is not part of the known adapter list.
75-
const isKnownAdapter = knownAdapters.some(adapter => {
75+
const isKnownAdapter = knownAdapters.some((adapter) => {
7676
return (
7777
adapter.module === moduleIdentifier &&
7878
adapter.identifier === importedIdentifier
@@ -84,7 +84,7 @@ module.exports = {
8484

8585
// Find all the variables referencing the imported wire adapter.
8686
const adapterVariable = scope.variables.find(
87-
variable => variable.name === localIdentifier,
87+
(variable) => variable.name === localIdentifier,
8888
);
8989

9090
for (const adapterReference of adapterVariable.references) {

Diff for: lib/rules/no-unknown-wire-adapters.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module.exports = {
7070

7171
// Let's resolve the reference to the wire adapter identifier in the current scope.
7272
const scope = context.getScope();
73-
const adapterVariable = scope.references.find(r => r.identifier === adapterNode)
73+
const adapterVariable = scope.references.find((r) => r.identifier === adapterNode)
7474
.resolved;
7575
if (!adapterVariable) {
7676
return context.report({
@@ -99,7 +99,7 @@ module.exports = {
9999
: 'default';
100100

101101
// Finally check if the imported identifier originates from a known module.
102-
const isKnownAdapter = knownAdapters.some(adapter => {
102+
const isKnownAdapter = knownAdapters.some((adapter) => {
103103
return (
104104
adapter.module === adapterModule && adapter.identifier === adapterIdentifier
105105
);

Diff for: lib/rules/valid-api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function validateUniqueness(classBody, context) {
3232
const { body } = classBody;
3333

3434
const publicProperties = body.filter(
35-
property => property.decorators && property.decorators.some(isApiDecorator),
35+
(property) => property.decorators && property.decorators.some(isApiDecorator),
3636
);
3737

3838
const seenPublicProperties = new Set();

Diff for: lib/util/decorator-util.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ function isWireDecorator(node) {
4747
*/
4848
function getPublicProperties(node) {
4949
return node.body
50-
.filter(node => {
50+
.filter((node) => {
5151
return (
5252
node.key.type === 'Identifier' &&
5353
node.decorators &&
5454
node.decorators.some(isApiDecorator)
5555
);
5656
})
57-
.map(node => {
57+
.map((node) => {
5858
let type;
5959
if (node.type === 'ClassProperty') {
6060
type = 'property';

Diff for: package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"devDependencies": {
1919
"babel-eslint": "^10.1.0",
2020
"eslint": "^6.8.0",
21-
"husky": "^4.2.3",
22-
"lint-staged": "^10.0.8",
21+
"husky": "^4.2.5",
22+
"lint-staged": "^10.1.7",
2323
"mocha": "^7.1.1",
24-
"nyc": "^15.0.0",
25-
"prettier": "^1.19.1"
24+
"nyc": "^15.0.1",
25+
"prettier": "^2.0.5"
2626
},
2727
"peerDependencies": {
2828
"babel-eslint": ">=10.0.0",

Diff for: test/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const DOC_FILES = fs.readdirSync(path.resolve(__dirname, '../docs/rules'));
2020
const README_CONTENT = fs.readFileSync(path.resolve(__dirname, '../README.md'), 'utf-8');
2121

2222
describe('rules exports', () => {
23-
RULE_FILES.forEach(ruleFile => {
23+
RULE_FILES.forEach((ruleFile) => {
2424
const ruleName = path.basename(ruleFile, '.js');
2525

2626
it(`should export "${ruleFile}"`, () => {
@@ -34,7 +34,7 @@ describe('rules exports', () => {
3434
});
3535

3636
describe('rules documentation', () => {
37-
RULE_FILES.forEach(ruleFile => {
37+
RULE_FILES.forEach((ruleFile) => {
3838
const ruleName = path.basename(ruleFile, '.js');
3939

4040
it(`should have a documentation file for "${ruleName}"`, () => {

Diff for: test/lib/rules/no-leaky-event-listeners.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const basicValidCases = buildCases({
4646

4747
const basicInvalidCases = buildCases({
4848
handlers: ['function() { return handleTest(); }', '() => handleTest', 'handleTest.bind(this)'],
49-
}).map(entry => {
49+
}).map((entry) => {
5050
return {
5151
...entry,
5252
errors: [

Diff for: yarn.lock

+45-45
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,14 @@ chalk@^3.0.0:
370370
ansi-styles "^4.1.0"
371371
supports-color "^7.1.0"
372372

373+
chalk@^4.0.0:
374+
version "4.0.0"
375+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72"
376+
integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==
377+
dependencies:
378+
ansi-styles "^4.1.0"
379+
supports-color "^7.1.0"
380+
373381
chardet@^0.7.0:
374382
version "0.7.0"
375383
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
@@ -474,17 +482,17 @@ color-name@~1.1.4:
474482
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
475483
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
476484

477-
commander@^4.0.1:
478-
version "4.1.1"
479-
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
480-
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
485+
commander@^5.0.0:
486+
version "5.0.0"
487+
resolved "https://registry.yarnpkg.com/commander/-/commander-5.0.0.tgz#dbf1909b49e5044f8fdaf0adc809f0c0722bdfd0"
488+
integrity sha512-JrDGPAKjMGSP1G0DUoaceEJ3DZgAfr/q6X7FVk4+U5KxUSKviYGM2k6zWkfyyBHy5rAtzgYJFa1ro2O9PtoxwQ==
481489

482490
commondir@^1.0.1:
483491
version "1.0.1"
484492
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
485493
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
486494

487-
compare-versions@^3.5.1:
495+
compare-versions@^3.6.0:
488496
version "3.6.0"
489497
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
490498
integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
@@ -758,10 +766,10 @@ esutils@^2.0.2:
758766
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
759767
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
760768

761-
execa@^3.4.0:
762-
version "3.4.0"
763-
resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
764-
integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==
769+
execa@^4.0.0:
770+
version "4.0.0"
771+
resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.0.tgz#7f37d6ec17f09e6b8fc53288611695b6d12b9daf"
772+
integrity sha512-JbDUxwV3BoT5ZVXQrSVbAiaXhXUkIwvbhPIwZ0N13kX+5yCzOhUNdocxB/UQRuYOHRYYwAxKYwJYc0T4D12pDA==
765773
dependencies:
766774
cross-spawn "^7.0.0"
767775
get-stream "^5.0.0"
@@ -770,7 +778,6 @@ execa@^3.4.0:
770778
merge-stream "^2.0.0"
771779
npm-run-path "^4.0.0"
772780
onetime "^5.1.0"
773-
p-finally "^2.0.0"
774781
signal-exit "^3.0.2"
775782
strip-final-newline "^2.0.0"
776783

@@ -1046,14 +1053,14 @@ human-signals@^1.1.1:
10461053
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
10471054
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
10481055

1049-
husky@^4.2.3:
1050-
version "4.2.3"
1051-
resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.3.tgz#3b18d2ee5febe99e27f2983500202daffbc3151e"
1052-
integrity sha512-VxTsSTRwYveKXN4SaH1/FefRJYCtx+wx04sSVcOpD7N2zjoHxa+cEJ07Qg5NmV3HAK+IRKOyNVpi2YBIVccIfQ==
1056+
husky@^4.2.5:
1057+
version "4.2.5"
1058+
resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36"
1059+
integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==
10531060
dependencies:
1054-
chalk "^3.0.0"
1061+
chalk "^4.0.0"
10551062
ci-info "^2.0.0"
1056-
compare-versions "^3.5.1"
1063+
compare-versions "^3.6.0"
10571064
cosmiconfig "^6.0.0"
10581065
find-versions "^3.2.0"
10591066
opencollective-postinstall "^2.0.2"
@@ -1307,10 +1314,10 @@ istanbul-lib-source-maps@^4.0.0:
13071314
istanbul-lib-coverage "^3.0.0"
13081315
source-map "^0.6.1"
13091316

1310-
istanbul-reports@^3.0.0:
1311-
version "3.0.0"
1312-
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.0.tgz#d4d16d035db99581b6194e119bbf36c963c5eb70"
1313-
integrity sha512-2osTcC8zcOSUkImzN2EWQta3Vdi4WjjKw99P2yWx5mLnigAM0Rd5uYFn1cf2i/Ois45GkNjaoTqc5CxgMSX80A==
1317+
istanbul-reports@^3.0.2:
1318+
version "3.0.2"
1319+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
1320+
integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
13141321
dependencies:
13151322
html-escaper "^2.0.0"
13161323
istanbul-lib-report "^3.0.0"
@@ -1368,17 +1375,17 @@ lines-and-columns@^1.1.6:
13681375
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
13691376
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
13701377

1371-
lint-staged@^10.0.8:
1372-
version "10.0.8"
1373-
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.0.8.tgz#0f7849cdc336061f25f5d4fcbcfa385701ff4739"
1374-
integrity sha512-Oa9eS4DJqvQMVdywXfEor6F4vP+21fPHF8LUXgBbVWUSWBddjqsvO6Bv1LwMChmgQZZqwUvgJSHlu8HFHAPZmA==
1378+
lint-staged@^10.1.7:
1379+
version "10.1.7"
1380+
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.1.7.tgz#b628f8b010083fe4e116d0af7949a32f1ea6b3a7"
1381+
integrity sha512-ZkK8t9Ep/AHuJQKV95izSa+DqotftGnSsNeEmCSqbQ6j4C4H0jDYhEZqVOGD1Q2Oe227igbqjMWycWyYbQtpoA==
13751382
dependencies:
1376-
chalk "^3.0.0"
1377-
commander "^4.0.1"
1383+
chalk "^4.0.0"
1384+
commander "^5.0.0"
13781385
cosmiconfig "^6.0.0"
13791386
debug "^4.1.1"
13801387
dedent "^0.7.0"
1381-
execa "^3.4.0"
1388+
execa "^4.0.0"
13821389
listr "^0.14.3"
13831390
log-symbols "^3.0.0"
13841391
micromatch "^4.0.2"
@@ -1591,7 +1598,7 @@ [email protected]:
15911598
object.getownpropertydescriptors "^2.0.3"
15921599
semver "^5.7.0"
15931600

1594-
node-preload@^0.2.0:
1601+
node-preload@^0.2.1:
15951602
version "0.2.1"
15961603
resolved "https://registry.yarnpkg.com/node-preload/-/node-preload-0.2.1.tgz#c03043bb327f417a18fee7ab7ee57b408a144301"
15971604
integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==
@@ -1615,10 +1622,10 @@ number-is-nan@^1.0.0:
16151622
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
16161623
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
16171624

1618-
nyc@^15.0.0:
1619-
version "15.0.0"
1620-
resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.0.0.tgz#eb32db2c0f29242c2414fe46357f230121cfc162"
1621-
integrity sha512-qcLBlNCKMDVuKb7d1fpxjPR8sHeMVX0CHarXAVzrVWoFrigCkYR8xcrjfXSPi5HXM7EU78L6ywO7w1c5rZNCNg==
1625+
nyc@^15.0.1:
1626+
version "15.0.1"
1627+
resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.0.1.tgz#bd4d5c2b17f2ec04370365a5ca1fc0ed26f9f93d"
1628+
integrity sha512-n0MBXYBYRqa67IVt62qW1r/d9UH/Qtr7SF1w/nQLJ9KxvWF6b2xCHImRAixHN9tnMMYHC2P14uo6KddNGwMgGg==
16221629
dependencies:
16231630
"@istanbuljs/load-nyc-config" "^1.0.0"
16241631
"@istanbuljs/schema" "^0.1.2"
@@ -1635,18 +1642,16 @@ nyc@^15.0.0:
16351642
istanbul-lib-processinfo "^2.0.2"
16361643
istanbul-lib-report "^3.0.0"
16371644
istanbul-lib-source-maps "^4.0.0"
1638-
istanbul-reports "^3.0.0"
1639-
js-yaml "^3.13.1"
1645+
istanbul-reports "^3.0.2"
16401646
make-dir "^3.0.0"
1641-
node-preload "^0.2.0"
1647+
node-preload "^0.2.1"
16421648
p-map "^3.0.0"
16431649
process-on-spawn "^1.0.0"
16441650
resolve-from "^5.0.0"
16451651
rimraf "^3.0.0"
16461652
signal-exit "^3.0.2"
16471653
spawn-wrap "^2.0.0"
16481654
test-exclude "^6.0.0"
1649-
uuid "^3.3.3"
16501655
yargs "^15.0.2"
16511656

16521657
object-assign@^4.1.0:
@@ -1725,11 +1730,6 @@ os-tmpdir@~1.0.2:
17251730
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
17261731
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
17271732

1728-
p-finally@^2.0.0:
1729-
version "2.0.1"
1730-
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
1731-
integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==
1732-
17331733
p-limit@^2.0.0, p-limit@^2.2.0:
17341734
version "2.2.2"
17351735
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
@@ -1854,10 +1854,10 @@ prelude-ls@~1.1.2:
18541854
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
18551855
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
18561856

1857-
prettier@^1.19.1:
1858-
version "1.19.1"
1859-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
1860-
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
1857+
prettier@^2.0.5:
1858+
version "2.0.5"
1859+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4"
1860+
integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==
18611861

18621862
process-on-spawn@^1.0.0:
18631863
version "1.0.0"

0 commit comments

Comments
 (0)