@mono-labs/cli 0.0.110 → 0.0.111

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.
@@ -3,7 +3,7 @@ import fs from 'node:fs';
3
3
 
4
4
  export function parseEnvFile(filePath) {
5
5
  if (!fs.existsSync(filePath)) {
6
- throw new Error(`.env file not found at: ${filePath}`);
6
+ return {};
7
7
  }
8
8
 
9
9
  const content = fs.readFileSync(filePath, 'utf8');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.110",
3
+ "version": "0.0.111",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",