rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
19 lines (18 loc) • 955 B
TypeScript
export declare const WORKSPACE_JSON = "workspace.json";
export declare const TSCONFIG_BASE_JSON = "tsconfig.base.json";
export declare const TSCONFIG_JSON = "tsconfig.json";
export declare const PROJECT_JSON = "project.json";
export declare const PACKAGE_JSON = "package.json";
export declare const RUCKEN_JSON = "rucken.json";
export declare const TRANSLOCO_CONFIG_JSON = "transloco.config.json";
export declare const TRANSLOCO_CONFIG_JS = "transloco.config.js";
export declare class UtilsService {
static logLevel: () => string;
getLogger(): import("log4js").Logger;
resolveFilePath(filename: string, dirname?: string): string;
getWorkspaceProjects(workspaceFile?: string): {};
private collectProjectsFromTsConfig;
getRuckenConfig<T>(defaultValue: T, configFile?: string): T;
getExtractAppName(nxAppName: string): string;
replaceEnv(command: string | undefined, envReplacerKeyPattern?: string, depth?: number): string;
}