mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
167 lines
5.0 KiB
JSON
167 lines
5.0 KiB
JSON
{
|
|
"name": "vscode-test-resolver",
|
|
"description": "Test resolver for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"enableProposedApi": true,
|
|
"enabledApiProposals": [
|
|
"resolvers"
|
|
],
|
|
"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",
|
|
"devDependencies": {
|
|
"@types/node": "16.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": "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"
|
|
}
|
|
],
|
|
"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"
|
|
}
|
|
}
|