@percy/cli-upload 1.9.0 → 1.10.1

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/upload.js +3 -6
  2. package/package.json +3 -3
package/dist/upload.js CHANGED
@@ -40,8 +40,8 @@ export const upload = command('upload', {
40
40
  }],
41
41
  examples: ['$0 ./images'],
42
42
  percy: {
43
- discoveryFlags: false,
44
- deferUploads: true
43
+ deferUploads: true,
44
+ skipDiscovery: true
45
45
  },
46
46
  config: {
47
47
  schemas: [UploadConfig.schema],
@@ -80,11 +80,8 @@ export const upload = command('upload', {
80
80
  discovery: {
81
81
  concurrency: config.concurrency
82
82
  }
83
- }); // do not launch a browser when starting
84
-
85
- yield* percy.yield.start({
86
- browser: false
87
83
  });
84
+ yield* percy.yield.start();
88
85
 
89
86
  for (let filename of pathnames) {
90
87
  let file = path.parse(filename);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percy/cli-upload",
3
- "version": "1.9.0",
3
+ "version": "1.10.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,9 +32,9 @@
32
32
  ]
33
33
  },
34
34
  "dependencies": {
35
- "@percy/cli-command": "1.9.0",
35
+ "@percy/cli-command": "1.10.1",
36
36
  "fast-glob": "^3.2.11",
37
37
  "image-size": "^1.0.0"
38
38
  },
39
- "gitHead": "3332a2a63802c58848d0a5fbdd3c7aadc076212b"
39
+ "gitHead": "3e16144300e8b49aab638ceb699630f4be71bb9f"
40
40
  }