fix: create cache dir if it doesn't already exist

This commit is contained in:
William Will
2023-03-31 09:36:59 -06:00
parent 71eb953fd3
commit 9c133be779
5 changed files with 26 additions and 68 deletions

View File

@ -3,7 +3,8 @@ import { id } from "tsafe/id";
import { parse as urlParse } from "url";
import { typeGuard } from "tsafe/typeGuard";
import { symToStr } from "tsafe/symToStr";
import { Bundler, bundlers, getParsedPackageJson } from "./parsed-package-json";
import { bundlers, getParsedPackageJson } from "./parsed-package-json";
import type { Bundler } from "./parsed-package-json";
import { getAppInputPath, getKeycloakBuildPath } from "./build-paths";
/** Consolidated build option gathered form CLI arguments and config in package.json */