pinmenote-extension/bin/build-firefox-prod

10 lines
271 B
Plaintext
Raw Normal View History

2022-12-17 22:55:05 +01:00
#!/bin/bash
2023-01-05 01:48:38 +01:00
export NODE_ENV=production
2022-12-17 22:55:05 +01:00
# swap manifests
mv src/manifest.json src/manifest.dev.json
2022-12-17 22:55:05 +01:00
mv src/manifest.ff.json src/manifest.json
# build
npm run prod:ff
2022-12-17 22:55:05 +01:00
# swap manifests back
mv src/manifest.json src/manifest.ff.json
mv src/manifest.dev.json src/manifest.json