Skip to content

Commit

Permalink
fix: fix output directory (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robot-Inventor committed Apr 10, 2024
1 parent cafd60a commit 3107377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.");

0 comments on commit 3107377

Please sign in to comment.