Skip to content

Commit

Permalink
Fix npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Brawl345 committed Aug 11, 2024
1 parent c8e43e9 commit c029d15
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@
"typecheck": "tsc --noEmit source/*.ts",
"start:chrome": "web-ext run -t chromium",
"start:firefox": "web-ext run -t firefox-desktop",
"build": "cross-env NODE_ENV=\"production\" tsx build.ts && web-ext build --overwrite-dest",
"build": "cross-env NODE_ENV=\"production\" tsx build.ts",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"web-ext-lint": "cross-env NODE_ENV=\"production\" tsx build.ts && web-ext lint",
"global:check-dependencies": "npm-check --skip-unused",
"web-ext-lint": "npm run build && web-ext lint",
"web-ext:build": "npm run build && web-ext build --overwrite-dest",
"web-ext:upload": "web-ext sign --channel=listed"
"web-ext:upload": "npm run web-ext:build && web-ext sign --channel=listed"
},
"webExt": {
"sourceDir": "./public/"
Expand Down

0 comments on commit c029d15

Please sign in to comment.