mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-22 17:25:33 -04:00
12 lines
284 B
Bash
Executable File
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 |