@percy/cli-exec 1.31.2-beta.0 → 1.31.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/exec.js +1 -1
- package/package.json +4 -4
package/dist/exec.js
CHANGED
|
@@ -105,7 +105,7 @@ export const exec = command('exec', {
|
|
|
105
105
|
});
|
|
106
106
|
|
|
107
107
|
// Spawn a command with cross-spawn and return an array containing the resulting status code along
|
|
108
|
-
// with any error encountered while running. Uses a generator pattern to handle
|
|
108
|
+
// with any error encountered while running. Uses a generator pattern to handle interrupt signals.
|
|
109
109
|
async function* spawn(cmd, args, percy) {
|
|
110
110
|
let {
|
|
111
111
|
default: crossSpawn
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-exec",
|
|
3
|
-
"version": "1.31.2-beta.
|
|
3
|
+
"version": "1.31.2-beta.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/cli-command": "1.31.2-beta.
|
|
37
|
-
"@percy/logger": "1.31.2-beta.
|
|
36
|
+
"@percy/cli-command": "1.31.2-beta.1",
|
|
37
|
+
"@percy/logger": "1.31.2-beta.1",
|
|
38
38
|
"cross-spawn": "^7.0.3",
|
|
39
39
|
"which": "^2.0.2"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "c8ba03fdd3ab7543f741a68eb5c357e38b48129e"
|
|
42
42
|
}
|