@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.
- package/dist/update.js +4 -0
- 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.
|
|
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.
|
|
34
|
-
"@percy/cli-build": "1.
|
|
35
|
-
"@percy/cli-command": "1.
|
|
36
|
-
"@percy/cli-config": "1.
|
|
37
|
-
"@percy/cli-exec": "1.
|
|
38
|
-
"@percy/cli-snapshot": "1.
|
|
39
|
-
"@percy/cli-upload": "1.
|
|
40
|
-
"@percy/client": "1.
|
|
41
|
-
"@percy/logger": "1.
|
|
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": "
|
|
43
|
+
"gitHead": "383ce2888d2e4fe6972368f9bbe8580b23431a98"
|
|
44
44
|
}
|