.github
.storybook
scripts
build
shared
cacheDirPath.ts
downloadKeycloakDefaultTheme.ts
run.ts
startRebuildOnSrcChange.ts
build-storybook.ts
dump-keycloak-realm.ts
generate-i18n-messages.ts
link-in-app.ts
link-in-starter.ts
start-storybook.ts
src
stories
test
.all-contributorsrc
.gitattributes
.gitignore
.prettierignore
.prettierrc.json
CONTRIBUTING.md
LICENSE
README.md
package.json
renovate.json
tsproject.json
vitest.config.ts
yarn.lock
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { join as pathJoin } from "path";
|
|
import { getThisCodebaseRootDirPath } from "../../src/bin/tools/getThisCodebaseRootDirPath";
|
|
|
|
export const cacheDirPath = pathJoin(
|
|
getThisCodebaseRootDirPath(),
|
|
"node_modules",
|
|
".cache",
|
|
"scripts"
|
|
);
|