mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* Added back Don't Ask Again logic * If no Azure CLI found, throw error instead of returning undefined. * Deleted 'restart ADS' text for arcdata extension prompts * Added error catch for parse version and parsed out the * in az --version * Added back findAz() * Added arcdata version to AzTool. Parse --version using regex. * Return undefined if no az found. * Added userRequested param for findAz * No longer await on extension activate. Re-added some functions for az install. * Install works for windows * Changed auto install for az on Linux and MacOS. * Added comment for findSpecificAzAndArc and uncommented some localizedConstants * Added comment for getSemVersionArc and took out the path for some tests. * Made findSpecificAzAndArc return an object instead of a list * Removed azToolService test * Removed azToolService tests and renamed suite to azcli Extension Tests * Got rid of new Regexp for regex in parseVersions * Added back azToolService.ts * Added logic to enable prompt user to install arcdata extension and auto-install capability. No update capability yet. Co-authored-by: Candice Ye <canye@microsoft.com>
109 lines
2.9 KiB
JSON
109 lines
2.9 KiB
JSON
{
|
|
"name": "azcli",
|
|
"displayName": "%azcli.arc.displayName%",
|
|
"description": "%azcli.arc.description%",
|
|
"version": "0.1.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": ">=1.26.0"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"microsoft.resource-deployment"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"configuration": [
|
|
{
|
|
"type": "object",
|
|
"title": "%azcli.arc.config.title%",
|
|
"properties": {
|
|
"azcli.logDebugInfo": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%azcli.arc.config.debug%"
|
|
},
|
|
"azcli.arcdataInstall": {
|
|
"type": "string",
|
|
"default": "prompt",
|
|
"enum": [
|
|
"dontPrompt",
|
|
"prompt"
|
|
],
|
|
"enumDescriptions": [
|
|
"%azcli.arc.install.dontPrompt.description%",
|
|
"%azcli.arc.install.prompt.description%"
|
|
],
|
|
"description": "%azcli.arc.azArcdataInstallKey.description%"
|
|
},
|
|
"azcli.arcdataUpdate": {
|
|
"type": "string",
|
|
"default": "prompt",
|
|
"enum": [
|
|
"dontPrompt",
|
|
"prompt"
|
|
],
|
|
"enumDescriptions": [
|
|
"%azcli.arc.update.dontPrompt.description%",
|
|
"%azcli.arc.update.prompt.description%"
|
|
],
|
|
"description": "%azcli.arc.azArcdataUpdateKey.description%"
|
|
},
|
|
"azcli.azInstall": {
|
|
"type": "string",
|
|
"default": "prompt",
|
|
"enum": [
|
|
"dontPrompt",
|
|
"prompt"
|
|
],
|
|
"enumDescriptions": [
|
|
"%azcli.install.dontPrompt.description%",
|
|
"%azcli.install.prompt.description%"
|
|
],
|
|
"description": "%azcli.azCliInstallKey.description%"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"resourceDeploymentOptionsSources": [
|
|
{
|
|
"id": "azcli.arc.controller.config.profiles"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"request": "^2.88.2",
|
|
"semver": "^7.3.2",
|
|
"sudo-prompt": "^9.2.1",
|
|
"vscode-nls": "^4.1.2",
|
|
"which": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^12.11.7",
|
|
"@types/request": "^2.48.5",
|
|
"@types/semver": "^7.3.1",
|
|
"@types/sinon": "^9.0.4",
|
|
"@types/uuid": "^8.0.0",
|
|
"@types/which": "^1.3.2",
|
|
"mocha": "^5.2.0",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"nock": "^13.0.2",
|
|
"should": "^13.2.3",
|
|
"sinon": "^9.0.2",
|
|
"typemoq": "^2.1.0",
|
|
"vscodetestcover": "^1.1.0"
|
|
}
|
|
}
|