comicfn2dict/bin/update-deps.sh
2023-12-21 13:04:52 -08:00

8 lines
128 B
Bash
Executable File

#!/bin/bash
# Update python and npm dependencies
set -euo pipefail
poetry update
poetry show --outdated
npm update
npm outdated