mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
14 lines
256 B
Bash
Executable file
14 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
# build_prod.sh builds distributable archive for the addon
|
|
# remember to bump version in package.json
|
|
set -eux
|
|
|
|
# clean
|
|
npm run clean
|
|
|
|
# chrome
|
|
npm run build:chrome
|
|
npm run package:chrome
|
|
# firefox
|
|
npm run build:firefox
|
|
npm run package:firefox
|