mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-19 21:33:46 -04:00
12 lines
326 B
JavaScript
12 lines
326 B
JavaScript
#!/usr/bin/env bun
|
|
import { $ } from "./utils.mjs";
|
|
|
|
await $`rm -rf dist`;
|
|
await $`pnpm tsc --outDir dist`;
|
|
|
|
await $`cp src/graph/parser/schema/types.template.mts dist/src/graph/parser/schema`;
|
|
await $`rm -rf dist/src/graph/parser/schema/types.template.mjs`;
|
|
|
|
await $`mv dist/src/* dist`;
|
|
await $`rm -rf dist/src dist/tests`;
|