@percy/cli-exec 1.26.3-beta.1 → 1.27.0-beta.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/dist/exec.js +2 -0
- package/dist/start.js +2 -0
- package/package.json +3 -3
package/dist/exec.js
CHANGED
|
@@ -65,6 +65,8 @@ export const exec = command('exec', {
|
|
|
65
65
|
log.warn('Percy is disabled');
|
|
66
66
|
} else {
|
|
67
67
|
try {
|
|
68
|
+
percy.projectType = percy.client.tokenType();
|
|
69
|
+
percy.skipDiscovery = percy.shouldSkipAssetDiscovery(percy.projectType);
|
|
68
70
|
yield* percy.yield.start();
|
|
69
71
|
} catch (error) {
|
|
70
72
|
if (error.name === 'AbortError') throw error;
|
package/dist/start.js
CHANGED
|
@@ -14,6 +14,8 @@ export const start = command('start', {
|
|
|
14
14
|
let {
|
|
15
15
|
yieldFor
|
|
16
16
|
} = await import('@percy/cli-command/utils');
|
|
17
|
+
percy.projectType = percy.client.tokenType();
|
|
18
|
+
percy.skipDiscovery = percy.shouldSkipAssetDiscovery(percy.projectType);
|
|
17
19
|
|
|
18
20
|
// start percy
|
|
19
21
|
yield* percy.yield.start();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-exec",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0-beta.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/cli-command": "1.
|
|
36
|
+
"@percy/cli-command": "1.27.0-beta.0",
|
|
37
37
|
"cross-spawn": "^7.0.3",
|
|
38
38
|
"which": "^2.0.2"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "2bc16314f51dddcc1cda459e7aa4b7b2db85f00a"
|
|
41
41
|
}
|