mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 20:57:12 +00:00
* chore: bump electron@35.0.1 * chore: update types/node@22.x * chore: update web types for node v22.x * chore: bump electron@35.1.2 * chore: update node.js build * chore: update app.dock usage Refs71f3ff6bf2* chore: bump electron@35.1.4 * chore: bump electron@35.1.5 * ci: bump sysroot to glibc 2.28 and gcc 10.5.0 * ci: enable timeout for smoketests * chore: bump min glibcxx to 3.4.26 for server * Revert "ci: enable timeout for smoketests" This reverts commitafb637e85d. * chore: update debian dependencies * fix: workaround npm.ps1 argument parsing with powershell * chore: update rpm dependencies * test: partially revert changes from 242535 * test: remove redudant keybinding dispatch for selectTab * test: fix test failure from running configured tasks * test: focus settings editor for preferences.test.ts * node - adopt compile cache (#246835) * node - adopt compile cache * adopt for utility process * tweaks * log state of compilation cache * Revert "log state of compilation cache" This reverts commit f3840387a583013834762e2c44f6e8424929297f. * Revert "node - adopt compile cache (#246835)" This reverts commit 673a00cab66c9bac87f3cd27b80efa41c80150f1. * chore: update builds * chore: bump electron@35.2.0 * chore: bump electron@35.2.1 * chore: bump electron@35.2.2 --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
222 lines
8.5 KiB
JSON
222 lines
8.5 KiB
JSON
{
|
|
"name": "debug-server-ready",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"icon": "media/icon.png",
|
|
"activationEvents": [
|
|
"onDebugResolve"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"enabledApiProposals": [
|
|
"terminalDataWriteEvent"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:debug-server-ready",
|
|
"watch": "gulp watch-extension:debug-server-ready"
|
|
},
|
|
"contributes": {
|
|
"debuggers": [
|
|
{
|
|
"type": "*",
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"properties": {
|
|
"serverReadyAction": {
|
|
"oneOf": [
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "openExternally",
|
|
"killOnServerStop": false
|
|
},
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"openExternally"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.openExternally.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "openExternally"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"uriFormat": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.uriFormat.description%",
|
|
"default": "http://localhost:%s"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "debugWithEdge",
|
|
"pattern": "listening on port ([0-9]+)",
|
|
"uriFormat": "http://localhost:%s",
|
|
"webRoot": "${workspaceFolder}",
|
|
"killOnServerStop": false
|
|
},
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"debugWithChrome",
|
|
"debugWithEdge"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.debugWithChrome.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "debugWithEdge"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"uriFormat": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.uriFormat.description%",
|
|
"default": "http://localhost:%s"
|
|
},
|
|
"webRoot": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.webRoot.description%",
|
|
"default": "${workspaceFolder}"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "startDebugging",
|
|
"name": "<launch browser config name>",
|
|
"killOnServerStop": false
|
|
},
|
|
"required": [
|
|
"name"
|
|
],
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"startDebugging"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.startDebugging.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "startDebugging"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.debugConfigName.description%",
|
|
"default": "Launch Browser"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "startDebugging",
|
|
"config": {
|
|
"type": "node",
|
|
"request": "launch"
|
|
},
|
|
"killOnServerStop": false
|
|
},
|
|
"required": [
|
|
"config"
|
|
],
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"startDebugging"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.startDebugging.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "startDebugging"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"config": {
|
|
"type": "object",
|
|
"markdownDescription": "%debug.server.ready.debugConfig.description%",
|
|
"default": {}
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|