We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.cache
1 parent 5346598 commit 485d728Copy full SHA for 485d728
src/config.ts
@@ -20,7 +20,7 @@ export const root = fileURLToPath(`file://${wd}`);
20
export const cacheMap = new Map();
21
export const nodeImportMapPath = join(root, "node.importmap");
22
export const cache = join(root, ".cache");
23
-const hasCacheFoler = existsSync(cache)
+const hasCacheFoler = existsSync(cache);
24
if (!hasCacheFoler) mkdirSync(cache);
25
const map = existsSync(nodeImportMapPath) ? JSON.parse(readFileSync(nodeImportMapPath, { encoding: "utf8" })) : {};
26
export const importmap = new ImportMap({ rootUrl: import.meta.url, map });
0 commit comments