hotfix: hard coded debug logic in shell spawn API
Some checks are pending
CI / build-test (macos-14) (push) Waiting to run
CI / build-test (ubuntu-24.04) (push) Waiting to run
CI / build-test (windows-latest) (push) Waiting to run
JSR Publish / publish (push) Waiting to run
NPM Package Publish / publish-npm (push) Waiting to run

This commit is contained in:
Huakun Shen 2025-03-18 21:09:44 -04:00
parent 0bca6739a7
commit d27731d0e6
No known key found for this signature in database
3 changed files with 15 additions and 202 deletions

View file

@ -169,8 +169,8 @@ export function constructShellApi(
const onEvent = new Channel<CommandEvent<O>>()
onEvent.onmessage = cb
return invoke<number>("plugin:shellx|spawn", {
program: "deno",
args: ["run", "/Users/hk/Dev/kunkun/deno.ts"],
program,
args,
options,
onEvent
})