14 lines
236 B
Bash
14 lines
236 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# check if szci is available
|
||
|
|
npm init -y
|
||
|
|
szci -v
|
||
|
|
|
||
|
|
# TODO update szci to not require package.json
|
||
|
|
szci node install stable
|
||
|
|
|
||
|
|
# check if npm picks it up
|
||
|
|
szci command pnpm install -g @gitzone/tsrun
|
||
|
|
szci command tsrun -v
|