UNPKG

@storm-software/config-tools

Version:

A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.

17 lines (15 loc) 622 B
/** * Find the monorepo root directory, searching upwards from `path`. * * @param pathInsideMonorepo - The path inside the monorepo to start searching from * @returns The monorepo root directory */ declare function findWorkspaceRootSafe(pathInsideMonorepo?: string): string | undefined; /** * Find the monorepo root directory, searching upwards from `path`. * * @param pathInsideMonorepo - The path inside the monorepo to start searching from * @returns The monorepo root directory */ declare function findWorkspaceRoot(pathInsideMonorepo?: string): string; export { findWorkspaceRoot, findWorkspaceRootSafe };