pinmenote-extension/bin/build-firefox-dev

8 lines
186 B
Plaintext
Raw Normal View History

2023-01-05 01:48:38 +01:00
#!/bin/bash
export NODE_ENV=development
# swap manifests
2023-09-22 03:18:30 +02:00
cp src/manifest.ff.json src/manifest.json
2023-01-05 01:48:38 +01:00
# build
npm run dev:ff
2023-01-05 01:48:38 +01:00
# swap manifests back
2023-09-22 03:18:30 +02:00
cp src/manifest.dev.json src/manifest.json