keycloak_theme/scripts/shared/cacheDirPath.ts

10 lines
258 B
TypeScript
Raw Normal View History

import { join as pathJoin } from "path";
import { getThisCodebaseRootDirPath } from "../../src/bin/tools/getThisCodebaseRootDirPath";
export const cacheDirPath = pathJoin(
getThisCodebaseRootDirPath(),
"node_modules",
".cache",
"scripts"
);