@percy/cli 1.31.2-beta.0 → 1.31.2-beta.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.
- package/README.md +1 -1
- package/dist/commands.js +2 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ request](https://www.browserstack.com/contact?ref=percy#technical-support).
|
|
|
49
49
|
|
|
50
50
|
## Developing
|
|
51
51
|
|
|
52
|
-
This project is built with [lerna](https://lerna.js.org/). The core
|
|
52
|
+
This project is built with [lerna](https://lerna.js.org/). The core libraries and CLI plugins are
|
|
53
53
|
located in [./packages](./packages). Run `yarn` to install dependencies after cloning the repo and
|
|
54
54
|
use the following scripts for various development tasks:
|
|
55
55
|
|
package/dist/commands.js
CHANGED
|
@@ -107,7 +107,7 @@ export function getSiblings(root) {
|
|
|
107
107
|
const siblings = [path.join(root, '..')];
|
|
108
108
|
|
|
109
109
|
// Check if Percy CLI is installed using '.pnpm' by searching
|
|
110
|
-
//
|
|
110
|
+
// for the .pnpm folder in the root path
|
|
111
111
|
const nodeModulesIndex = root.indexOf('.pnpm');
|
|
112
112
|
if (nodeModulesIndex !== -1) {
|
|
113
113
|
// add the parent directory of the .pnpm and append /@percy
|
|
@@ -116,7 +116,7 @@ export function getSiblings(root) {
|
|
|
116
116
|
return siblings;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
// Imports and returns
|
|
119
|
+
// Imports and returns compatible CLI commands from various sources
|
|
120
120
|
export async function importCommands() {
|
|
121
121
|
let root = path.resolve(url.fileURLToPath(import.meta.url), '../..');
|
|
122
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli",
|
|
3
|
-
"version": "1.31.2-beta.
|
|
3
|
+
"version": "1.31.2-beta.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"test:coverage": "yarn test --coverage"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@percy/cli-app": "1.31.2-beta.
|
|
35
|
-
"@percy/cli-build": "1.31.2-beta.
|
|
36
|
-
"@percy/cli-command": "1.31.2-beta.
|
|
37
|
-
"@percy/cli-config": "1.31.2-beta.
|
|
38
|
-
"@percy/cli-exec": "1.31.2-beta.
|
|
39
|
-
"@percy/cli-snapshot": "1.31.2-beta.
|
|
40
|
-
"@percy/cli-upload": "1.31.2-beta.
|
|
41
|
-
"@percy/client": "1.31.2-beta.
|
|
42
|
-
"@percy/logger": "1.31.2-beta.
|
|
34
|
+
"@percy/cli-app": "1.31.2-beta.1",
|
|
35
|
+
"@percy/cli-build": "1.31.2-beta.1",
|
|
36
|
+
"@percy/cli-command": "1.31.2-beta.1",
|
|
37
|
+
"@percy/cli-config": "1.31.2-beta.1",
|
|
38
|
+
"@percy/cli-exec": "1.31.2-beta.1",
|
|
39
|
+
"@percy/cli-snapshot": "1.31.2-beta.1",
|
|
40
|
+
"@percy/cli-upload": "1.31.2-beta.1",
|
|
41
|
+
"@percy/client": "1.31.2-beta.1",
|
|
42
|
+
"@percy/logger": "1.31.2-beta.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c8ba03fdd3ab7543f741a68eb5c357e38b48129e"
|
|
45
45
|
}
|