@percy/env 1.30.8 → 1.30.9-alpha-1.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/environment.js +5 -0
- package/package.json +4 -4
package/dist/environment.js
CHANGED
|
@@ -279,6 +279,11 @@ export class PercyEnv {
|
|
|
279
279
|
return this.vars.PERCY_TOKEN || null;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
+
// th build uuid
|
|
283
|
+
get testhubBuildUuid() {
|
|
284
|
+
return this.vars.TH_BUILD_UUID || this.vars.BROWSERSTACK_TESTHUB_UUID || null;
|
|
285
|
+
}
|
|
286
|
+
|
|
282
287
|
// PERCY_FORCE_PKG_VALUE for forcing package.json values
|
|
283
288
|
// to be used as the current environment values in client
|
|
284
289
|
get forcedPkgValue() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/env",
|
|
3
|
-
"version": "1.30.
|
|
3
|
+
"version": "1.30.9-alpha-1.0",
|
|
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": "alpha"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=14"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"test:coverage": "yarn test --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@percy/logger": "1.30.
|
|
35
|
+
"@percy/logger": "1.30.9-alpha-1.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "c9741e74fdbd7d2c152bcdcb619e9b5c1da13be6"
|
|
38
38
|
}
|