@percy/cli 1.0.5 → 1.0.6

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/commands.js +1 -0
  2. 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.5",
3
+ "version": "1.0.6",
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.5",
34
- "@percy/cli-command": "1.0.5",
35
- "@percy/cli-config": "1.0.5",
36
- "@percy/cli-exec": "1.0.5",
37
- "@percy/cli-snapshot": "1.0.5",
38
- "@percy/cli-upload": "1.0.5",
39
- "@percy/client": "1.0.5",
40
- "@percy/logger": "1.0.5"
33
+ "@percy/cli-build": "1.0.6",
34
+ "@percy/cli-command": "1.0.6",
35
+ "@percy/cli-config": "1.0.6",
36
+ "@percy/cli-exec": "1.0.6",
37
+ "@percy/cli-snapshot": "1.0.6",
38
+ "@percy/cli-upload": "1.0.6",
39
+ "@percy/client": "1.0.6",
40
+ "@percy/logger": "1.0.6"
41
41
  },
42
- "gitHead": "7cf12904abb316ab7348332e68c8c0ef68d78097"
42
+ "gitHead": "f883f713ac513635245301622392870ba4018706"
43
43
  }