@percy/cli-config 1.31.1-beta.1 → 1.31.1-beta.2
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 +25 -22
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -18,20 +18,21 @@ Usage:
|
|
|
18
18
|
$ percy config:create [options] [filepath]
|
|
19
19
|
|
|
20
20
|
Arguments:
|
|
21
|
-
filepath
|
|
21
|
+
filepath Optional config filepath
|
|
22
22
|
|
|
23
23
|
Options:
|
|
24
|
-
--rc
|
|
25
|
-
--yaml
|
|
26
|
-
--yml
|
|
27
|
-
--json
|
|
28
|
-
--js
|
|
24
|
+
--rc Create a .percyrc file
|
|
25
|
+
--yaml Create a .percy.yaml file
|
|
26
|
+
--yml Create a .percy.yml file
|
|
27
|
+
--json Create a .percy.json file
|
|
28
|
+
--js Create a .percy.js file
|
|
29
29
|
|
|
30
30
|
Global options:
|
|
31
|
-
-v, --verbose
|
|
32
|
-
-q, --quiet
|
|
33
|
-
-s, --silent
|
|
34
|
-
-
|
|
31
|
+
-v, --verbose Log everything
|
|
32
|
+
-q, --quiet Log errors only
|
|
33
|
+
-s, --silent Log nothing
|
|
34
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
35
|
+
-h, --help Display command help
|
|
35
36
|
|
|
36
37
|
Examples:
|
|
37
38
|
$ percy config:create
|
|
@@ -51,13 +52,14 @@ Usage:
|
|
|
51
52
|
$ percy config:validate [options] [filepath]
|
|
52
53
|
|
|
53
54
|
Arguments:
|
|
54
|
-
filepath
|
|
55
|
+
filepath Config filepath, detected by default
|
|
55
56
|
|
|
56
57
|
Global options:
|
|
57
|
-
-v, --verbose
|
|
58
|
-
-q, --quiet
|
|
59
|
-
-s, --silent
|
|
60
|
-
-
|
|
58
|
+
-v, --verbose Log everything
|
|
59
|
+
-q, --quiet Log errors only
|
|
60
|
+
-s, --silent Log nothing
|
|
61
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
62
|
+
-h, --help Display command help
|
|
61
63
|
|
|
62
64
|
Examples:
|
|
63
65
|
$ percy config:validate
|
|
@@ -73,17 +75,18 @@ Usage:
|
|
|
73
75
|
$ percy config:migrate [options] [filepath] [output]
|
|
74
76
|
|
|
75
77
|
Arguments:
|
|
76
|
-
filepath
|
|
77
|
-
output
|
|
78
|
+
filepath Current config filepath, detected by default
|
|
79
|
+
output New config filepath to write to, defaults to 'filepath'
|
|
78
80
|
|
|
79
81
|
Options:
|
|
80
|
-
-d, --dry-run
|
|
82
|
+
-d, --dry-run Print the new config without writing it
|
|
81
83
|
|
|
82
84
|
Global options:
|
|
83
|
-
-v, --verbose
|
|
84
|
-
-q, --quiet
|
|
85
|
-
-s, --silent
|
|
86
|
-
-
|
|
85
|
+
-v, --verbose Log everything
|
|
86
|
+
-q, --quiet Log errors only
|
|
87
|
+
-s, --silent Log nothing
|
|
88
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
89
|
+
-h, --help Display command help
|
|
87
90
|
|
|
88
91
|
Examples:
|
|
89
92
|
$ percy config:migrate
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-config",
|
|
3
|
-
"version": "1.31.1-beta.
|
|
3
|
+
"version": "1.31.1-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/cli-command": "1.31.1-beta.
|
|
36
|
+
"@percy/cli-command": "1.31.1-beta.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "809b770761a7a5ad0044e462218452e920a4d1f0"
|
|
39
39
|
}
|