@percy/client 1.29.2-beta.0 → 1.29.3-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/client.js +4 -2
- package/package.json +4 -4
package/dist/client.js
CHANGED
|
@@ -128,7 +128,8 @@ export class PercyClient {
|
|
|
128
128
|
// done more seemlessly without manually tracking build ids
|
|
129
129
|
async createBuild({
|
|
130
130
|
resources = [],
|
|
131
|
-
projectType
|
|
131
|
+
projectType,
|
|
132
|
+
cliStartTime = null
|
|
132
133
|
} = {}) {
|
|
133
134
|
this.log.debug('Creating a new build...');
|
|
134
135
|
let tagsArr = tagsList(this.labels);
|
|
@@ -151,7 +152,8 @@ export class PercyClient {
|
|
|
151
152
|
'parallel-nonce': this.env.parallel.nonce,
|
|
152
153
|
'parallel-total-shards': this.env.parallel.total,
|
|
153
154
|
partial: this.env.partial,
|
|
154
|
-
tags: tagsArr
|
|
155
|
+
tags: tagsArr,
|
|
156
|
+
'cli-start-time': cliStartTime
|
|
155
157
|
},
|
|
156
158
|
relationships: {
|
|
157
159
|
resources: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/client",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.3-beta.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"test:coverage": "yarn test --coverage"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/env": "1.29.
|
|
37
|
-
"@percy/logger": "1.29.
|
|
36
|
+
"@percy/env": "1.29.3-beta.0",
|
|
37
|
+
"@percy/logger": "1.29.3-beta.0",
|
|
38
38
|
"pako": "^2.1.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "ee18a7860dcf1fb778e4cbb069683280c2c4c465"
|
|
41
41
|
}
|