14 lines
172 B
Text
14 lines
172 B
Text
|
|
#!/bin/sh -eu
|
||
|
|
|
||
|
|
cd "$RUN_DIR"
|
||
|
|
|
||
|
|
[ -z "${DEBUG:-}" ] || set -x
|
||
|
|
|
||
|
|
echo '# Poetry:'
|
||
|
|
poetry show --outdated --top-level --with=build,dev
|
||
|
|
|
||
|
|
echo '
|
||
|
|
# Npm:'
|
||
|
|
cd unwind-ui
|
||
|
|
npm outdated
|