mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Update commands
This commit is contained in:
@@ -9,3 +9,5 @@ const wss = new WebSocketServer({
|
||||
perMessageDeflate: false,
|
||||
});
|
||||
wss;
|
||||
|
||||
debugger;
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
"commands": [
|
||||
{
|
||||
"command": "extension.bun.runFile",
|
||||
"title": "Run Bun",
|
||||
"title": "Run File",
|
||||
"shortTitle": "Run",
|
||||
"category": "Bun",
|
||||
"enablement": "!inDebugMode",
|
||||
@@ -75,7 +75,7 @@
|
||||
},
|
||||
{
|
||||
"command": "extension.bun.debugFile",
|
||||
"title": "Debug Bun",
|
||||
"title": "Debug File",
|
||||
"shortTitle": "Debug",
|
||||
"category": "Bun",
|
||||
"enablement": "!inDebugMode",
|
||||
|
||||
@@ -7,7 +7,7 @@ import { tmpdir } from "node:os";
|
||||
const debugConfiguration: vscode.DebugConfiguration = {
|
||||
type: "bun",
|
||||
request: "launch",
|
||||
name: "Debug Bun",
|
||||
name: "Debug File",
|
||||
program: "${file}",
|
||||
cwd: "${workspaceFolder}",
|
||||
stopOnEntry: false,
|
||||
@@ -18,7 +18,7 @@ const debugConfiguration: vscode.DebugConfiguration = {
|
||||
const runConfiguration: vscode.DebugConfiguration = {
|
||||
type: "bun",
|
||||
request: "launch",
|
||||
name: "Run Bun",
|
||||
name: "Run File",
|
||||
program: "${file}",
|
||||
cwd: "${workspaceFolder}",
|
||||
noDebug: true,
|
||||
|
||||
Reference in New Issue
Block a user