diff options
author | 2023-09-20 19:09:51 +0200 | |
---|---|---|
committer | 2023-09-20 10:09:51 -0700 | |
commit | 711a2bcdd1a6bb7ab9029625b28517254cfdcd3e (patch) | |
tree | b3ac0565bc5c7eb4c5a2bb03885300eb76bd7b3a /packages/bun-vscode/example | |
parent | 689b28455c943897a3d286271e6f182afb17848f (diff) | |
download | bun-711a2bcdd1a6bb7ab9029625b28517254cfdcd3e.tar.gz bun-711a2bcdd1a6bb7ab9029625b28517254cfdcd3e.tar.zst bun-711a2bcdd1a6bb7ab9029625b28517254cfdcd3e.zip |
Fix various bugs in vscode extension (#5772)
* Fix bugs
* Fix bugs
* Revert "Fix bugs"
This reverts commit 608639eb2214fdf4310477051ce47d20702b5dd0.
Diffstat (limited to 'packages/bun-vscode/example')
-rw-r--r-- | packages/bun-vscode/example/package.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/bun-vscode/example/package.json b/packages/bun-vscode/example/package.json index 91055b5f5..eed10159d 100644 --- a/packages/bun-vscode/example/package.json +++ b/packages/bun-vscode/example/package.json @@ -8,8 +8,10 @@ "mime-db": "^1.52.0" }, "scripts": { - "run": "hello.js", - "start": "bun hello.js" + "run": "node hello.js", + "start": "hello.js", + "start:bun": "bun hello.js", + "start:bun:quotes": "bun run hello.js" }, "trustedDependencies": [ "mime" |