@mono-labs/cli 0.0.108 → 0.0.110

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.
@@ -1,6 +1,5 @@
1
1
  // scripts/read-env.mjs
2
2
  import fs from 'node:fs';
3
- import path from 'node:path';
4
3
 
5
4
  export function parseEnvFile(filePath) {
6
5
  if (!fs.existsSync(filePath)) {
@@ -2,7 +2,8 @@ import { runForeground } from './runners/runForeground.js';
2
2
  import { runBackground } from './runners/runBackground.js';
3
3
  import { killAllBackground } from './runners/processManager.js';
4
4
  import { getHasteConfig } from '../loadFromRoot.js';
5
- import path from 'path';
5
+ import { parseEnvFile } from './readEnv.js';
6
+ import path from 'node:path';
6
7
 
7
8
  /**
8
9
  * Orchestrate execution of a single haste command definition.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.108",
3
+ "version": "0.0.110",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",