mirror of
https://github.com/dnote/dnote
synced 2026-03-17 07:55:50 +01:00
* Implement lint in all js projects * Use yarn workspace * Remove package-lock.json * Fix * Extract common dev dep * Bump
14 lines
241 B
Bash
Executable file
14 lines
241 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
|
|
yarn clean
|
|
|
|
# chrome
|
|
yarn build:chrome
|
|
yarn package:chrome
|
|
# firefox
|
|
yarn build:firefox
|
|
yarn package:firefox
|