mirror of
https://github.com/dnote/dnote
synced 2026-03-15 23:15:50 +01:00
* Allow to add and edit notes * Implement search * Implement settings * Implement checkout page * Implement paywall * Fix inconsistent margin * Render mobile menu * Allow to logout * emails * Implement user migration * Always build standalone * Embed digest in email * Move browser extension * Fix test * Use system font * Add favicon and app icons * Make tabbar smaller * Initialize focus on editor * Fix various UI audit issues * Simplify asset serving * Register sw * Upgrade deps
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
|