8 lines
128 B
Bash
8 lines
128 B
Bash
|
#!/bin/bash
|
||
|
# Update python and npm dependencies
|
||
|
set -euo pipefail
|
||
|
poetry update
|
||
|
poetry show --outdated
|
||
|
npm update
|
||
|
npm outdated
|