Files
Tat Dat Duong 2b729b47c2 Add CLI
2025-01-21 02:53:12 +01:00

12 lines
284 B
Bash
Executable File

#!/bin/bash
set -e # Exit on error
set -x # Print commands before execution
rm -rf dist
tsc --outDir dist
cp src/graph/parser/schema/types.template.mts dist/src/graph/parser/schema
rm -rf dist/src/graph/parser/schema/types.template.mjs
mv dist/src/* dist
rm -rf dist/src dist/tests