dependency-cruiser
Version:
Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.
18 lines (16 loc) • 747 B
JavaScript
import { clearCache as tscClearCache } from "./tsc/parse.mjs";
import { clearCache as acornClearCache } from "./acorn/parse.mjs";
import { clearCache as swcClearCache } from "./swc/parse.mjs";
import { clearCache as externalModuleHelpers_clearCache } from "./resolve/external-module-helpers.mjs";
import { clearCache as getManifest_clearCache } from "./resolve/get-manifest.mjs";
import { clearCache as resolveAMD_clearCache } from "./resolve/resolve-amd.mjs";
import { clearCache as resolve_clearCache } from "./resolve/resolve.mjs";
export default function clearCaches() {
tscClearCache();
acornClearCache();
swcClearCache();
externalModuleHelpers_clearCache();
getManifest_clearCache();
resolveAMD_clearCache();
resolve_clearCache();
}