@percy/cli 1.13.0 → 1.15.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/update.js +4 -0
  2. package/package.json +11 -11
package/dist/update.js CHANGED
@@ -76,6 +76,10 @@ export async function checkForUpdate() {
76
76
  } = readFromCache();
77
77
  let pkg = getPackageJSON(import.meta.url);
78
78
  let log = logger('cli:update');
79
+ if (process.env.PERCY_SKIP_UPDATE_CHECK) {
80
+ log.debug('Skipping update check');
81
+ return;
82
+ }
79
83
  try {
80
84
  // request new release information if needed
81
85
  if (!releases) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percy/cli",
3
- "version": "1.13.0",
3
+ "version": "1.15.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,15 +30,15 @@
30
30
  "test:coverage": "yarn test --coverage"
31
31
  },
32
32
  "dependencies": {
33
- "@percy/cli-app": "1.13.0",
34
- "@percy/cli-build": "1.13.0",
35
- "@percy/cli-command": "1.13.0",
36
- "@percy/cli-config": "1.13.0",
37
- "@percy/cli-exec": "1.13.0",
38
- "@percy/cli-snapshot": "1.13.0",
39
- "@percy/cli-upload": "1.13.0",
40
- "@percy/client": "1.13.0",
41
- "@percy/logger": "1.13.0"
33
+ "@percy/cli-app": "1.15.0",
34
+ "@percy/cli-build": "1.15.0",
35
+ "@percy/cli-command": "1.15.0",
36
+ "@percy/cli-config": "1.15.0",
37
+ "@percy/cli-exec": "1.15.0",
38
+ "@percy/cli-snapshot": "1.15.0",
39
+ "@percy/cli-upload": "1.15.0",
40
+ "@percy/client": "1.15.0",
41
+ "@percy/logger": "1.15.0"
42
42
  },
43
- "gitHead": "d2e812d14aa446fa580ffa75144a6280627b5a27"
43
+ "gitHead": "383ce2888d2e4fe6972368f9bbe8580b23431a98"
44
44
  }