mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode a348d103d1256a06a2c9b3f9b406298a9fef6898 * Fixes and cleanup * Distro * Fix hygiene yarn * delete no yarn lock changes file * Fix hygiene * Fix layer check * Fix CI * Skip lib checks * Remove tests deleted in vs code * Fix tests * Distro * Fix tests and add removed extension point * Skip failing notebook tests for now * Disable broken tests and cleanup build folder * Update yarn.lock and fix smoke tests * Bump sqlite * fix contributed actions and file spacing * Fix user data path * Update yarn.locks Co-authored-by: ADS Merger <karlb@microsoft.com>
274 lines
5.4 KiB
JSON
274 lines
5.4 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "watch-clientd",
|
|
"label": "Core - Build",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildWatchers"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
},
|
|
"background": {
|
|
"beginsPattern": "Starting compilation",
|
|
"endsPattern": "Finished compilation"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "watch-extensionsd",
|
|
"label": "Ext - Build",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildWatchers"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
},
|
|
"background": {
|
|
"beginsPattern": "Starting compilation",
|
|
"endsPattern": "Finished compilation"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "watch-extension-mediad",
|
|
"label": "Ext Media - Build",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildWatchers"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
},
|
|
"background": {
|
|
"beginsPattern": "Starting compilation",
|
|
"endsPattern": "Finished compilation"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "VS Code - Build",
|
|
"dependsOn": [
|
|
"Core - Build",
|
|
"Ext - Build",
|
|
"Ext Media - Build",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "kill-watch-clientd",
|
|
"label": "Kill Core - Build",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildKillers"
|
|
},
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "kill-watch-extensionsd",
|
|
"label": "Kill Ext - Build",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildKillers"
|
|
},
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "kill-watch-extension-mediad",
|
|
"label": "Kill Ext Media - Build",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"group": "buildKillers"
|
|
},
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Kill VS Code - Build",
|
|
"dependsOn": [
|
|
"Kill Core - Build",
|
|
"Kill Ext - Build",
|
|
"Kill Ext Media - Build",
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "strict-vscode-watch",
|
|
"label": "TS - Strict VSCode",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": {
|
|
"base": "$tsc-watch",
|
|
"owner": "typescript-vscode",
|
|
"applyTo": "allDocuments"
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "watch-webd",
|
|
"label": "Web Ext - Build",
|
|
"group": "build",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
},
|
|
"background": {
|
|
"beginsPattern": "Starting compilation",
|
|
"endsPattern": "Finished compilation"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "kill-watch-webd",
|
|
"label": "Kill Web Ext - Build",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Run tests",
|
|
"type": "shell",
|
|
"command": "./scripts/test.sh",
|
|
"windows": {
|
|
"command": ".\\scripts\\test.bat"
|
|
},
|
|
"group": "test",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always"
|
|
}
|
|
},
|
|
{
|
|
"label": "Run Dev",
|
|
"type": "shell",
|
|
"command": "./scripts/code.sh",
|
|
"windows": {
|
|
"command": ".\\scripts\\code.bat"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "electron",
|
|
"label": "Download electron"
|
|
},
|
|
{
|
|
"type": "gulp",
|
|
"task": "hygiene",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "yarn web --no-launch",
|
|
"label": "Run web",
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"pattern": {
|
|
"regexp": ""
|
|
},
|
|
"background": {
|
|
"beginsPattern": ".*node .*",
|
|
"endsPattern": "Web UI available at .*"
|
|
}
|
|
},
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "eslint",
|
|
"problemMatcher": {
|
|
"source": "eslint",
|
|
"base": "$eslint-stylish"
|
|
}
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "node build/lib/preLaunch.js",
|
|
"label": "Ensure Prelaunch Dependencies",
|
|
"presentation": {
|
|
"reveal": "silent"
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "tsec-compile-check",
|
|
"problemMatcher": [
|
|
{
|
|
"base": "$tsc",
|
|
"applyTo": "allDocuments",
|
|
"owner": "tsec"
|
|
}
|
|
],
|
|
"group": "build",
|
|
"label": "npm: tsec-compile-check",
|
|
"detail": "node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit"
|
|
}
|
|
]
|
|
}
|