| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/bin/bash
- dpkg -s zip &> /dev/null
- if [ $? -ne 0 ]
- then
- if ! command -v zip &> /dev/null; then
- echo "Installing zip"
- sudo apt install zip
- fi
- fi
- dpkg -s jq &> /dev/null
- if [ $? -ne 0 ]
- then
- if ! command -v jq &> /dev/null; then
- echo "Installing jq"
- sudo apt install jq
- fi
- fi
- npm install
- npm update
- npx rollup -c rollup.config.js
- cp package.json package.copy.json
- jq 'del(.dependencies."single-file-cli")' package.copy.json > package.json
- zip -r singlefile-extension-source.zip manifest.json package.json _locales src rollup*.js eslint.config.mjs build-extension.sh
- mv package.copy.json package.json
- rm -f singlefile-extension-firefox.zip
- cp src/core/bg/config.js config.copy.js
- cp src/core/bg/companion.js companion.copy.js
- node -e "const fs=require('fs');const file='src/core/bg/config.js';const updated=fs.readFileSync(file,'utf8').replace(/forceWebAuthFlow: false/g,'forceWebAuthFlow: true');fs.writeFileSync(file,updated);"
- node -e "const fs=require('fs');const file='src/core/bg/companion.js';const updated=fs.readFileSync(file,'utf8').replace(/enabled: true/g,'enabled: false');fs.writeFileSync(file,updated);"
- zip -r singlefile-extension-firefox.zip manifest.json lib _locales src
- mv config.copy.js src/core/bg/config.js
- mv companion.copy.js src/core/bg/companion.js
|