mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +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>
178 lines
5.4 KiB
JSON
178 lines
5.4 KiB
JSON
{
|
|
"name": "vscode-test-resolver",
|
|
"description": "Test resolver for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"enabledApiProposals": [
|
|
"resolvers",
|
|
"tunnels"
|
|
],
|
|
"private": true,
|
|
"engines": {
|
|
"vscode": "^1.25.0"
|
|
},
|
|
"icon": "media/icon.png",
|
|
"extensionKind": [
|
|
"ui"
|
|
],
|
|
"scripts": {
|
|
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-test-resolver"
|
|
},
|
|
"activationEvents": [
|
|
"onResolveRemoteAuthority:test",
|
|
"onCommand:vscode-testresolver.newWindow",
|
|
"onCommand:vscode-testresolver.currentWindow",
|
|
"onCommand:vscode-testresolver.newWindowWithError",
|
|
"onCommand:vscode-testresolver.showLog",
|
|
"onCommand:vscode-testresolver.openTunnel",
|
|
"onCommand:vscode-testresolver.startRemoteServer",
|
|
"onCommand:vscode-testresolver.toggleConnectionPause"
|
|
],
|
|
"main": "./out/extension",
|
|
"browser": "./dist/browser/testResolverMain",
|
|
"devDependencies": {
|
|
"@types/node": "22.x"
|
|
},
|
|
"capabilities": {
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
},
|
|
"virtualWorkspaces": true
|
|
},
|
|
"contributes": {
|
|
"resourceLabelFormatters": [
|
|
{
|
|
"scheme": "vscode-remote",
|
|
"authority": "test+*",
|
|
"formatting": {
|
|
"label": "${path}",
|
|
"separator": "/",
|
|
"tildify": true,
|
|
"workspaceSuffix": "TestResolver",
|
|
"workspaceTooltip": "Remote running on the same machine"
|
|
}
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"title": "New TestResolver Window",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.newWindow"
|
|
},
|
|
{
|
|
"title": "Connect to TestResolver in Current Window",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.currentWindow"
|
|
},
|
|
{
|
|
"title": "Connect to TestResolver in Current Window with Managed Connection",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.currentWindowManaged"
|
|
},
|
|
{
|
|
"title": "Show TestResolver Log",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.showLog"
|
|
},
|
|
{
|
|
"title": "Kill Remote Server and Trigger Handled Error",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.killServerAndTriggerHandledError"
|
|
},
|
|
{
|
|
"title": "Open Tunnel...",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.openTunnel"
|
|
},
|
|
{
|
|
"title": "Open a Remote Port...",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.startRemoteServer"
|
|
},
|
|
{
|
|
"title": "Pause Connection (Test Reconnect)",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.toggleConnectionPause"
|
|
},
|
|
{
|
|
"title": "Slowdown Connection (Test Slow Down Indicator)",
|
|
"category": "Remote-TestResolver",
|
|
"command": "vscode-testresolver.toggleConnectionSlowdown"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "vscode-testresolver.openTunnel",
|
|
"when": "remoteName == test"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.startRemoteServer",
|
|
"when": "remoteName == test"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.toggleConnectionPause",
|
|
"when": "remoteName == test"
|
|
}
|
|
],
|
|
"statusBar/remoteIndicator": [
|
|
{
|
|
"command": "vscode-testresolver.newWindow",
|
|
"when": "!remoteName && !virtualWorkspace",
|
|
"group": "remote_90_test_1_local@2"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.showLog",
|
|
"when": "remoteName == test",
|
|
"group": "remote_90_test_1_open@3"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.newWindow",
|
|
"when": "remoteName == test",
|
|
"group": "remote_90_test_1_open@1"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.openTunnel",
|
|
"when": "remoteName == test",
|
|
"group": "remote_90_test_2_more@4"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.startRemoteServer",
|
|
"when": "remoteName == test",
|
|
"group": "remote_90_test_2_more@5"
|
|
},
|
|
{
|
|
"command": "vscode-testresolver.toggleConnectionPause",
|
|
"when": "remoteName == test",
|
|
"group": "remote_90_test_2_more@6"
|
|
}
|
|
]
|
|
},
|
|
"configuration": {
|
|
"properties": {
|
|
"testresolver.startupDelay": {
|
|
"description": "If set, the resolver will delay for the given amount of seconds. Use ths setting for testing a slow resolver",
|
|
"type": "number",
|
|
"default": 0
|
|
},
|
|
"testresolver.startupError": {
|
|
"description": "If set, the resolver will fail. Use ths setting for testing the failure of a resolver.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"testresolver.supportPublicPorts": {
|
|
"description": "If set, the test resolver tunnel factory will support mock public ports. Forwarded ports will not actually be public. Requires reload.",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|