@mono-labs/cli 0.0.22 → 0.0.23

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/lib/app.js +1 -1
  2. package/package.json +1 -1
package/lib/app.js CHANGED
@@ -12,7 +12,7 @@ const __filename = fileURLToPath(import.meta.url);
12
12
  const __dirname = dirname(__filename);
13
13
 
14
14
  // package.json sitting next to this file (or one folder up as needed)
15
- const pkgPath = join(__dirname, 'package.json'); // same folder
15
+ const pkgPath = join(__dirname, '../../', 'package.json'); // same folder
16
16
  // const pkgPath = join(__dirname, '..', 'package.json'); // parent folder
17
17
 
18
18
  const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",