Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update dependency execa to v4 #1936

Merged
merged 1 commit into from Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion @commitlint/cli/package.json
Expand Up @@ -43,7 +43,7 @@
"@types/yargs": "^15.0.3",
"babel-preset-commitlint": "^9.1.2",
"cross-env": "7.0.2",
"execa": "^3.4.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/load/package.json
Expand Up @@ -37,7 +37,7 @@
"@commitlint/test": "^9.1.2",
"@commitlint/utils": "^9.1.2",
"@types/lodash": "4.14.157",
"execa": "^3.4.0"
"execa": "^4.0.0"
},
"dependencies": {
"@commitlint/execute-rule": "^9.1.2",
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/prompt-cli/package.json
Expand Up @@ -36,7 +36,7 @@
},
"dependencies": {
"@commitlint/prompt": "^9.1.2",
"execa": "^3.4.0"
"execa": "^4.0.0"
},
"gitHead": "cb565dfcca3128380b9b3dc274aedbcae34ce5ca"
}
2 changes: 1 addition & 1 deletion @commitlint/travis-cli/package.json
Expand Up @@ -55,7 +55,7 @@
"dependencies": {
"@babel/runtime": "^7.9.6",
"@commitlint/cli": "^9.1.2",
"execa": "^3.4.0"
"execa": "^4.0.0"
},
"gitHead": "cb565dfcca3128380b9b3dc274aedbcae34ce5ca"
}
2 changes: 1 addition & 1 deletion @packages/test/package.json
Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@types/fs-extra": "^9.0.0",
"@types/tmp": "^0.2.0",
"execa": "^3.4.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"pkg-dir": "4.2.0",
"resolve-pkg": "2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion @packages/utils/package.json
Expand Up @@ -38,7 +38,7 @@
"license": "MIT",
"dependencies": {
"@commitlint/test": "^9.1.2",
"execa": "^3.4.0",
"execa": "^4.0.0",
"is-builtin-module": "3.0.0",
"meow": "4.0.1",
"read-pkg": "5.2.0",
Expand Down
17 changes: 16 additions & 1 deletion yarn.lock
Expand Up @@ -5004,7 +5004,7 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"

execa@^3.2.0, execa@^3.4.0:
execa@^3.2.0:
version "3.4.0"
resolved "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==
Expand All @@ -5020,6 +5020,21 @@ execa@^3.2.0, execa@^3.4.0:
signal-exit "^3.0.2"
strip-final-newline "^2.0.0"

execa@^4.0.0:
version "4.0.3"
resolved "https://registry.npmjs.org/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2"
integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==
dependencies:
cross-spawn "^7.0.0"
get-stream "^5.0.0"
human-signals "^1.1.1"
is-stream "^2.0.0"
merge-stream "^2.0.0"
npm-run-path "^4.0.0"
onetime "^5.1.0"
signal-exit "^3.0.2"
strip-final-newline "^2.0.0"

execa@^4.0.1:
version "4.0.2"
resolved "https://registry.npmjs.org/execa/-/execa-4.0.2.tgz#ad87fb7b2d9d564f70d2b62d511bee41d5cbb240"
Expand Down