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
|
2023-01-25 00:51:08 +01:00
|
|
|
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
|