Skip to content

Commit 3107377

Browse files
fix: fix output directory (#41)
1 parent cafd60a commit 3107377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/package.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ execSync("npm run build");
55

66
console.log("Packaging for Chrome...");
77
process.chdir("dist/chrome");
8-
execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV2"`);
8+
execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV3"`);
99

1010
console.log("Packaging for Firefox...");
1111
process.chdir("../firefox");
12-
execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV3"`);
12+
execSync(`npx web-ext build --artifacts-dir "../../web-ext-artifacts/manifestV2"`);
1313
console.log("Done.");

0 commit comments

Comments
 (0)