Files
ohif-viewer/.scripts/dev.sh
2025-05-27 11:05:07 +07:00

15 lines
267 B
Bash
Executable File

#!/bin/bash
# https://github.com/shelljs/shelljs
# https://github.com/shelljs/shelljs#exclude-options
PROJECT=$1
if [ -z "$PROJECT" ]
then
# Default
npx lerna run dev:viewer
else
eval "npx lerna run dev:$PROJECT"
fi
read -p 'Press [Enter] key to continue...'