9 lines
80 B
Bash
Executable File
9 lines
80 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
rm -rf ./dist
|
|
|
|
npm run tsc
|
|
cp -r "./server/static" "./dist"
|