mirror of
https://github.com/WorldEditAxe/eaglerproxy.git
synced 2024-11-09 15:26:04 -08:00
12 lines
122 B
Bash
12 lines
122 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
rm -rf .build
|
||
|
mkdir -p ./.build
|
||
|
|
||
|
cd ~/$REPL_SLUG/
|
||
|
npm install typescript
|
||
|
npm install
|
||
|
npx tsc
|