From 626254b0221f0b7c328c342f3504e854d30f58af Mon Sep 17 00:00:00 2001 From: Robot-Inventor <30.keita@gmail.com> Date: Thu, 11 Apr 2024 02:25:54 +0900 Subject: [PATCH] fix: fix output directory --- script/package.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/package.ts b/script/package.ts index aedd35b..eaec480 100644 --- a/script/package.ts +++ b/script/package.ts @@ -5,9 +5,9 @@ execSync("npm run build"); console.log("Packaging for Chrome..."); process.chdir("dist/chrome"); -execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV2"`); +execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV3"`); console.log("Packaging for Firefox..."); process.chdir("../firefox"); -execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV3"`); +execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV2"`); console.log("Done.");