diff --git a/.changeset/config.json b/.changeset/config.json index 8920fea95..084844752 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -8,7 +8,6 @@ "baseBranch": "main", "updateInternalDependencies": "minor", "ignore": [ - "assistant-ui", "@assistant-ui/docs", "@assistant-ui/shadcn-registry", "search-agent-for-e-commerce", diff --git a/.changeset/fair-jokes-leave.md b/.changeset/fair-jokes-leave.md new file mode 100644 index 000000000..3744128fb --- /dev/null +++ b/.changeset/fair-jokes-leave.md @@ -0,0 +1,5 @@ +--- +"assistant-ui": patch +--- + +fix: create command windows compatibility diff --git a/packages/cli/src/commands/create.ts b/packages/cli/src/commands/create.ts index cdfda1242..3ba13e7b4 100644 --- a/packages/cli/src/commands/create.ts +++ b/packages/cli/src/commands/create.ts @@ -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")