@justprove/mobilevc 0.1.1 → 0.1.2

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/bin/mobilevc.js +1 -0
  2. package/package.json +1 -1
package/bin/mobilevc.js CHANGED
@@ -405,6 +405,7 @@ function resolveInstalledPackageRoot(packageName) {
405
405
  safeResolve(() => require.resolve(`${packageName}/package.json`)),
406
406
  safeResolve(() => require.resolve(`${packageName}/package.json`, { paths: [__dirname, process.cwd()] })),
407
407
  path.join(__dirname, '..', 'node_modules', packageJsonSuffix, 'package.json'),
408
+ path.join(__dirname, '..', '..', 'node_modules', packageJsonSuffix, 'package.json'),
408
409
  path.join(__dirname, '..', '..', packageJsonSuffix, 'package.json'),
409
410
  path.join(getGlobalNodeModulesRoot(), packageJsonSuffix, 'package.json'),
410
411
  ].filter(Boolean);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justprove/mobilevc",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Claude Code mobile workspace launcher with precompiled MobileVC backend binaries.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",