@percy/cli 1.0.5 → 1.0.8
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/commands.js +1 -0
- package/package.json +10 -10
package/dist/commands.js
CHANGED
|
@@ -106,6 +106,7 @@ export async function importCommands() {
|
|
|
106
106
|
root, // find potential sibling packages
|
|
107
107
|
path.join(root, '..'), // find any current project dependencies
|
|
108
108
|
process.cwd()]), async (roots, dir) => {
|
|
109
|
+
if (fs.existsSync(path.join(dir, 'package.json'))) roots.push(dir);
|
|
109
110
|
roots.push(...(await findModulePackages(dir)));
|
|
110
111
|
roots.push(...(await findPnpPackages(dir)));
|
|
111
112
|
return roots;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"test:coverage": "yarn test --coverage"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@percy/cli-build": "1.0.
|
|
34
|
-
"@percy/cli-command": "1.0.
|
|
35
|
-
"@percy/cli-config": "1.0.
|
|
36
|
-
"@percy/cli-exec": "1.0.
|
|
37
|
-
"@percy/cli-snapshot": "1.0.
|
|
38
|
-
"@percy/cli-upload": "1.0.
|
|
39
|
-
"@percy/client": "1.0.
|
|
40
|
-
"@percy/logger": "1.0.
|
|
33
|
+
"@percy/cli-build": "1.0.8",
|
|
34
|
+
"@percy/cli-command": "1.0.8",
|
|
35
|
+
"@percy/cli-config": "1.0.8",
|
|
36
|
+
"@percy/cli-exec": "1.0.8",
|
|
37
|
+
"@percy/cli-snapshot": "1.0.8",
|
|
38
|
+
"@percy/cli-upload": "1.0.8",
|
|
39
|
+
"@percy/client": "1.0.8",
|
|
40
|
+
"@percy/logger": "1.0.8"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "86c0b8916ed78205d3044f29b0384a25a5a93214"
|
|
43
43
|
}
|