Skip to content

Commit

Permalink
Fix building when used as intermediary step
Browse files Browse the repository at this point in the history
  • Loading branch information
mstieranka committed Oct 20, 2023
1 parent 63e7b3c commit 122e8e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"main": "src/background.js",
"scripts": {
"build": "bun run scripts/run_build.ts",
"build:firefox": "bun build && bun run scripts/package.ts --firefox",
"build:chrome": "bun build && bun run scripts/package.ts --chrome",
"build:firefox": "bun run build && bun run scripts/package.ts --firefox",
"build:chrome": "bun run build && bun run scripts/package.ts --chrome",
"dev": "bun run scripts/dev.ts",
"lint": "stylelint **/*.css; eslint .",
"lint:fix": "prettier --write .; stylelint **/*.css --fix; eslint . --fix",
"sign:firefox": "bun build && bun run scripts/package.ts --firefox --sign",
"sign:firefox": "bun run build && bun run scripts/package.ts --firefox --sign",
"version": "bun run scripts/version.ts"
},
"repository": {
Expand Down

0 comments on commit 122e8e3

Please sign in to comment.