@percy/cli-build 1.29.2 → 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.
Files changed (2) hide show
  1. package/dist/finalize.js +3 -1
  2. package/package.json +4 -4
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.2",
3
+ "version": "1.29.3-beta.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": "latest"
12
+ "tag": "beta"
13
13
  },
14
14
  "engines": {
15
15
  "node": ">=14"
@@ -33,7 +33,7 @@
33
33
  ]
34
34
  },
35
35
  "dependencies": {
36
- "@percy/cli-command": "1.29.2"
36
+ "@percy/cli-command": "1.29.3-beta.0"
37
37
  },
38
- "gitHead": "2ee21c225586af1cd257e5155b012e3a92645074"
38
+ "gitHead": "ee18a7860dcf1fb778e4cbb069683280c2c4c465"
39
39
  }