@percy/client 1.30.2-alpha.1 → 1.30.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/dist/client.js +3 -1
- package/package.json +5 -5
package/dist/client.js
CHANGED
|
@@ -621,10 +621,10 @@ export class PercyClient {
|
|
|
621
621
|
...meta
|
|
622
622
|
});
|
|
623
623
|
} catch (error) {
|
|
624
|
-
this.log.error(error);
|
|
625
624
|
if (error.response.statusCode === 400) {
|
|
626
625
|
return false;
|
|
627
626
|
}
|
|
627
|
+
this.log.error(error);
|
|
628
628
|
throw error;
|
|
629
629
|
}
|
|
630
630
|
}
|
|
@@ -714,6 +714,8 @@ export class PercyClient {
|
|
|
714
714
|
return 'app';
|
|
715
715
|
case 'ss':
|
|
716
716
|
return 'generic';
|
|
717
|
+
case 'vmw':
|
|
718
|
+
return 'visual_scanner';
|
|
717
719
|
default:
|
|
718
720
|
return 'web';
|
|
719
721
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/client",
|
|
3
|
-
"version": "1.30.2
|
|
3
|
+
"version": "1.30.2",
|
|
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,9 +33,9 @@
|
|
|
33
33
|
"test:coverage": "yarn test --coverage"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/env": "1.30.2
|
|
37
|
-
"@percy/logger": "1.30.2
|
|
36
|
+
"@percy/env": "1.30.2",
|
|
37
|
+
"@percy/logger": "1.30.2",
|
|
38
38
|
"pako": "^2.1.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "160670ddfcea48d1bf5ad122bf13fe09b75460e1"
|
|
41
41
|
}
|