Skip to content

Commit 5f9d17c

Browse files
authored
Update SDK generation to use yarn dev (#271)
* Add sdk package build * Update sdk generation to work on startup --------- Signed-off-by: Adam Majmudar <64697628+adam-maj@users.noreply.github.com>
1 parent f0080d7 commit 5f9d17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/generate-sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { execSync, spawn } from "child_process";
22
import fs from "fs";
33

44
async function main() {
5-
const child = spawn("yarn", ["dev:server"], { detached: true });
5+
const child = spawn("yarn", ["dev"], { detached: true });
66
if (!child.pid) return;
77

88
await new Promise((resolve) => setTimeout(resolve, 10000));

0 commit comments

Comments
 (0)