@codervisor/devlog-core
Version:
Core devlog management functionality
19 lines • 608 B
TypeScript
/**
* Centralized environment variable loader for the monorepo
* Ensures all packages load .env from the root directory
*/
/**
* Load environment variables from the monorepo root .env file
* This function is safe to call multiple times - it will only load once
*/
export declare function loadRootEnv(): void;
/**
* Get the monorepo root directory
*/
export declare function getMonorepoRoot(): string;
/**
* Load environment variables and return the root directory
* Convenient for packages that need both
*/
export declare function initializeEnv(): string;
//# sourceMappingURL=env-loader.d.ts.map