@percy/cli-build 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/finalize.js +3 -1
- package/package.json +3 -3
package/dist/finalize.js
CHANGED
|
@@ -24,7 +24,9 @@ export const finalize = command('finalize', {
|
|
|
24
24
|
// rely on the parallel nonce to cause the API to return the current running build for the nonce
|
|
25
25
|
let {
|
|
26
26
|
data: build
|
|
27
|
-
} = await percy.client.createBuild(
|
|
27
|
+
} = await percy.client.createBuild({
|
|
28
|
+
cliStartTime: percy.cliStartTime
|
|
29
|
+
});
|
|
28
30
|
await percy.client.finalizeBuild(build.id, {
|
|
29
31
|
all: true
|
|
30
32
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli-build",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.3-beta.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@percy/cli-command": "1.29.
|
|
36
|
+
"@percy/cli-command": "1.29.3-beta.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "ee18a7860dcf1fb778e4cbb069683280c2c4c465"
|
|
39
39
|
}
|