export async function resolveAbsolutePath()

in generator/specs.ts [8:13]


export async function resolveAbsolutePath(localPath: string) {
    if (path.isAbsolute(localPath)) {
        return path.resolve(localPath);
    }
    return path.resolve(constants.repoRoot, localPath);
}