From 5207886329cbc0645c805e22b629edd016a2a476 Mon Sep 17 00:00:00 2001 From: Florian Dieminger Date: Mon, 25 Nov 2024 20:26:26 +0100 Subject: [PATCH] fix(rari-npm): fix download tmp folder --- rari-npm/lib/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rari-npm/lib/download.js b/rari-npm/lib/download.js index 09816295..1d7ed91b 100644 --- a/rari-npm/lib/download.js +++ b/rari-npm/lib/download.js @@ -8,7 +8,7 @@ import path from "node:path"; import { x } from "tar"; import extract from "extract-zip"; -import * as packageJson from "../package.json" with { type: "json" }; +import packageJson from "../package.json" with { type: "json" }; const tmpDir = path.join(tmpdir(), `rari-cache-${packageJson.version}`); const isWindows = platform() === "win32";