-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Initial start on migration to official Node SDK"
This reverts commit 71e9f67.
- Loading branch information
1 parent
71e9f67
commit cbc2810
Showing
3 changed files
with
111 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,98 @@ | ||
{ | ||
"name": "vstsbuildstatus", | ||
"displayName": "Visual Studio Team Services Build Status", | ||
"description": "Monitor Visual Studio Team Services builds in the status bar", | ||
"version": "0.5.0", | ||
"publisher": "jeppeandersen", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Visual Studio Team Services", | ||
"Build Status", | ||
"CI" | ||
], | ||
"icon": "assets/icon.png", | ||
"bugs": { | ||
"url": "https://github.com/jlandersen/vscode-vsts-build-status/issues" | ||
}, | ||
"homepage": "https://github.com/jlandersen/vscode-vsts-build-status/blob/master/README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jlandersen/vscode-vsts-build-status.git" | ||
}, | ||
"galleryBanner": { | ||
"color": "#5c2d91", | ||
"theme": "dark" | ||
}, | ||
"engines": { | ||
"vscode": "^1.5.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"activationEvents": [ | ||
"*" | ||
], | ||
"main": "./out/src/extension", | ||
"scripts": { | ||
"vscode:prepublish": "tsc -p ./", | ||
"compile": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install" | ||
}, | ||
"dependencies": { | ||
"@types/q": "0.0.32", | ||
"node-rest-client": "^2.0.0", | ||
"openurl": "^1.1.1", | ||
"vso-node-api": "^5.0.5" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.0.3", | ||
"vscode": "^1.0.0", | ||
"mocha": "^2.3.3", | ||
"@types/node": "^6.0.40", | ||
"@types/mocha": "^2.2.32" | ||
}, | ||
"contributes": { | ||
"configuration": { | ||
"type": "object", | ||
"title": "VSTS Build Status Configuration", | ||
"properties": { | ||
"vsts.account": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies your Visual Studio Team Services account name ([account].visualstudio.com)." | ||
}, | ||
"vsts.username": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies a username to use for accessing VSTS Build information on the account. Not needed if you use a personal acceess token." | ||
}, | ||
"vsts.password": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies the password or Personal Access Token to use for accessing VSTS Build information on the account." | ||
}, | ||
"vsts.project": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies the VSTS project to look for builds in." | ||
} | ||
} | ||
}, | ||
"commands": [ | ||
{ | ||
"command": "extension.openVstsBuildDefinitionSelection", | ||
"title": " VSTS Build Status: Select Build Definition to Monitor" | ||
}, | ||
{ | ||
"command": "extension.openVstsQueueBuildSelection", | ||
"title": " VSTS Build Status: Queue Build" | ||
}, | ||
{ | ||
"command": "extension.openVstsBuildLogSelection", | ||
"title": " VSTS Build Status: View Build Log" | ||
}, | ||
{ | ||
"command": "extension.openVstsBuildWebSelection", | ||
"title": "VSTS Build Status: Open Build in Browser" | ||
} | ||
] | ||
} | ||
} | ||
{ | ||
"name": "vstsbuildstatus", | ||
"displayName": "Visual Studio Team Services Build Status", | ||
"description": "Monitor Visual Studio Team Services builds in the status bar", | ||
"version": "0.5.0", | ||
"publisher": "jeppeandersen", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Visual Studio Team Services", | ||
"Build Status", | ||
"CI" | ||
], | ||
"icon": "assets/icon.png", | ||
"bugs": { | ||
"url": "https://github.com/jlandersen/vscode-vsts-build-status/issues" | ||
}, | ||
"homepage": "https://github.com/jlandersen/vscode-vsts-build-status/blob/master/README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jlandersen/vscode-vsts-build-status.git" | ||
}, | ||
"galleryBanner": { | ||
"color": "#5c2d91", | ||
"theme": "dark" | ||
}, | ||
"engines": { | ||
"vscode": "^1.5.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"activationEvents": [ | ||
"*" | ||
], | ||
"main": "./out/src/extension", | ||
"scripts": { | ||
"vscode:prepublish": "tsc -p ./", | ||
"compile": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install" | ||
}, | ||
"dependencies": { | ||
"node-rest-client": "^2.0.0", | ||
"openurl": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.0.3", | ||
"vscode": "^1.0.0", | ||
"mocha": "^2.3.3", | ||
"@types/node": "^6.0.40", | ||
"@types/mocha": "^2.2.32" | ||
}, | ||
"contributes": { | ||
"configuration": { | ||
"type": "object", | ||
"title": "VSTS Build Status Configuration", | ||
"properties": { | ||
"vsts.account": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies your Visual Studio Team Services account name ([account].visualstudio.com)." | ||
}, | ||
"vsts.username": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies a username to use for accessing VSTS Build information on the account. Not needed if you use a personal acceess token." | ||
}, | ||
"vsts.password": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies the password or Personal Access Token to use for accessing VSTS Build information on the account." | ||
}, | ||
"vsts.project": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Specifies the VSTS project to look for builds in." | ||
} | ||
} | ||
}, | ||
"commands": [ | ||
{ | ||
"command": "extension.openVstsBuildDefinitionSelection", | ||
"title": " VSTS Build Status: Select Build Definition to Monitor" | ||
}, | ||
{ | ||
"command": "extension.openVstsQueueBuildSelection", | ||
"title": " VSTS Build Status: Queue Build" | ||
}, | ||
{ | ||
"command": "extension.openVstsBuildLogSelection", | ||
"title": " VSTS Build Status: View Build Log" | ||
}, | ||
{ | ||
"command": "extension.openVstsBuildWebSelection", | ||
"title": "VSTS Build Status: Open Build in Browser" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters