mermaid/run
2023-06-24 21:37:19 +03:00

70 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
RUN="docker-compose run --rm"
# UP="docker-compose up"
name=$(basename $0)
command=$1
args=${@:2}
case $command in
sh)
$RUN mermaid sh $args
;;
i | install)
$RUN mermaid sh -c "npx pnpm install $args"
;;
add)
$RUN mermaid sh -c "npx pnpm -w add $args"
;;
test | vitest | e2e )
$RUN mermaid sh -c "npx pnpm $command $args"
;;
prettier)
$RUN mermaid sh -c "npx pnpm prettier --write $args"
;;
lint)
$RUN mermaid sh -c "npx pnpm -w run lint:fix $args"
;;
dev)
$RUN --service-ports mermaid sh -c "npx pnpm run dev"
# $UP --rm mermaid sh -c "npx pnpm run dev"
;;
help)
usage=$(
cat <<EOF
Run commonly used commands within docker containers
\033[1m$name install\033[0m # Equvalent of pnpm install
\033[1m$name dev\033[0m # Run dev server with examples, open http://localhost:9000
$name add # Add package, 'run add d3-sankey'
$name prettier # Prettify a file 'run prettier <path-to-file>'
$name lint # Equvalent of pnpm -w run lint:fix
$name test # Run unit tests
$name vitest # Run watcher for unit tests
$name e2e # Run integration tests
$name sh # Open sh inside docker container for development
$name help # Show this help
EOF
)
echo -n -e "$usage"
;;
*)
$name help
;;
esac