Skip to content

Commit

Permalink
cli: use cross-spawn for windows compat (#800)
Browse files Browse the repository at this point in the history
Co-authored-by: Octavian <[email protected]>
  • Loading branch information
Yonom and Endi0n authored Sep 10, 2024
1 parent 9ef3a2c commit 7d7bbce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"baseBranch": "main",
"updateInternalDependencies": "minor",
"ignore": [
"assistant-ui",
"@assistant-ui/docs",
"@assistant-ui/shadcn-registry",
"search-agent-for-e-commerce",
Expand Down
5 changes: 5 additions & 0 deletions .changeset/fair-jokes-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"assistant-ui": patch
---

fix: create command windows compatibility
2 changes: 1 addition & 1 deletion packages/cli/src/commands/create.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Command } from "commander";
import chalk from "chalk";
import { spawn } from "child_process";
import { spawn } from "cross-spawn";

export const create = new Command()
.name("create")
Expand Down

0 comments on commit 7d7bbce

Please sign in to comment.