@enspirit/emb
Version:
A replacement for our Makefile-for-monorepos
16 lines (15 loc) • 463 B
TypeScript
export * from './types.js';
export * from './validation.js';
export interface LoadConfigOptions {
/**
* Explicit root directory path. Takes precedence over EMB_ROOT env var.
* Can be either:
* - A directory containing .emb.yml
* - A direct path to a .emb.yml file
*/
root?: string;
}
export declare const loadConfig: (options?: LoadConfigOptions) => Promise<{
rootDir: string;
config: import("./schema.js").EMBConfig;
}>;