Skip to content

Commit

Permalink
Fix broken package scripts due to new dist dir structure
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Apr 19, 2024
1 parent 96675cb commit bdc448b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"scripts": {
"buildDev": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.js --mode development",
"buildProd": "yarn workspace root run verify && NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.js --mode production",
"package": "cd dist && zip -r ../asbplayer-extension-$(jq -r .version ../src/manifest.json).zip * && cd ..",
"packageDev": "yarn buildDev && yarn package",
"packageProd": "yarn buildProd && yarn package",
"packageProdFirefox": "yarn buildProd --env firefox && yarn package"
"package": "cd dist/$PLATFORM && zip -r ../asbplayer-extension-$(jq -r .version manifest.json).zip * && cd ../..",
"packageDev": "yarn buildDev && PLATFORM=chromium yarn package",
"packageProd": "yarn buildProd && PLATFORM=chromium yarn package",
"packageProdFirefox": "yarn buildProd --env firefox && PLATFORM=firefox yarn package"
},
"dependencies": {
"@fontsource/roboto": "^4.5.0",
Expand Down

0 comments on commit bdc448b

Please sign in to comment.