@percy/cli-build 1.21.0 → 1.22.0
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/README.md +2 -1
- package/dist/wait.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -36,8 +36,9 @@ Options:
|
|
|
36
36
|
-p, --project <slug> Build project slug, requires '--commit'
|
|
37
37
|
-c, --commit <sha> Build commit sha, requires '--project'
|
|
38
38
|
-t, --timeout <ms> Timeout before exiting without updates, defaults to 10 minutes
|
|
39
|
-
-i, --interval <ms> Interval at which to poll for updates, defaults to
|
|
39
|
+
-i, --interval <ms> Interval at which to poll for updates, defaults to 10 second
|
|
40
40
|
-f, --fail-on-changes Exit with an error when diffs are found
|
|
41
|
+
--pass-if-approved Doesn't Exit with an error if the build is approved, requires '--fail-on-changes'
|
|
41
42
|
|
|
42
43
|
Global options:
|
|
43
44
|
-v, --verbose Log everything
|
package/dist/wait.js
CHANGED
|
@@ -26,7 +26,7 @@ export const wait = command('wait', {
|
|
|
26
26
|
short: 't'
|
|
27
27
|
}, {
|
|
28
28
|
name: 'interval',
|
|
29
|
-
description: 'Interval at which to poll for updates, defaults to
|
|
29
|
+
description: 'Interval at which to poll for updates, defaults to 10 second',
|
|
30
30
|
type: 'ms',
|
|
31
31
|
parse: Number,
|
|
32
32
|
short: 'i'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-build",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@percy/cli-command": "1.
|
|
35
|
+
"@percy/cli-command": "1.22.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "473ae8925585bc77f584bbcaa7058fc967bd3c61"
|
|
38
38
|
}
|