8 lines
128 B
Bash
Executable File
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
|