@percy/cli-exec 1.31.1-beta.1 → 1.31.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/README.md +14 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ Global options:
|
|
|
41
41
|
-v, --verbose Log everything
|
|
42
42
|
-q, --quiet Log errors only
|
|
43
43
|
-s, --silent Log nothing
|
|
44
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
44
45
|
--help Display command help
|
|
45
46
|
|
|
46
47
|
Examples:
|
|
@@ -70,6 +71,7 @@ Global options:
|
|
|
70
71
|
-v, --verbose Log everything
|
|
71
72
|
-q, --quiet Log errors only
|
|
72
73
|
-s, --silent Log nothing
|
|
74
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
73
75
|
--help Display command help
|
|
74
76
|
|
|
75
77
|
Examples:
|
|
@@ -85,13 +87,14 @@ Usage:
|
|
|
85
87
|
$ percy exec:stop [options]
|
|
86
88
|
|
|
87
89
|
Percy options:
|
|
88
|
-
-P, --port [number]
|
|
90
|
+
-P, --port [number] Local CLI server port (default: 5338)
|
|
89
91
|
|
|
90
92
|
Global options:
|
|
91
|
-
-v, --verbose
|
|
92
|
-
-q, --quiet
|
|
93
|
-
-s, --silent
|
|
94
|
-
-
|
|
93
|
+
-v, --verbose Log everything
|
|
94
|
+
-q, --quiet Log errors only
|
|
95
|
+
-s, --silent Log nothing
|
|
96
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
97
|
+
-h, --help Display command help
|
|
95
98
|
```
|
|
96
99
|
|
|
97
100
|
### `percy exec:ping`
|
|
@@ -103,12 +106,13 @@ Usage:
|
|
|
103
106
|
$ percy exec:ping [options]
|
|
104
107
|
|
|
105
108
|
Percy options:
|
|
106
|
-
-P, --port [number]
|
|
109
|
+
-P, --port [number] Local CLI server port (default: 5338)
|
|
107
110
|
|
|
108
111
|
Global options:
|
|
109
|
-
-v, --verbose
|
|
110
|
-
-q, --quiet
|
|
111
|
-
-s, --silent
|
|
112
|
-
-
|
|
112
|
+
-v, --verbose Log everything
|
|
113
|
+
-q, --quiet Log errors only
|
|
114
|
+
-s, --silent Log nothing
|
|
115
|
+
-l, --labels <string> Associates labels to the build (ex: --labels=dev,prod )
|
|
116
|
+
-h, --help Display command help
|
|
113
117
|
```
|
|
114
118
|
<!-- commandsstop -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-exec",
|
|
3
|
-
"version": "1.31.1
|
|
3
|
+
"version": "1.31.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public",
|
|
12
|
-
"tag": "
|
|
12
|
+
"tag": "latest"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=14"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/cli-command": "1.31.1
|
|
37
|
-
"@percy/logger": "1.31.1
|
|
36
|
+
"@percy/cli-command": "1.31.1",
|
|
37
|
+
"@percy/logger": "1.31.1",
|
|
38
38
|
"cross-spawn": "^7.0.3",
|
|
39
39
|
"which": "^2.0.2"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "56d0fe4722eea63cfe8a6ea7aa02cf00d465a85d"
|
|
42
42
|
}
|