Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icescrum/vsts-icescrum
iceScrum extension for Visual Studio Team Service.
https://github.com/icescrum/vsts-icescrum
Last synced: 13 days ago
JSON representation
iceScrum extension for Visual Studio Team Service.
- Host: GitHub
- URL: https://github.com/icescrum/vsts-icescrum
- Owner: icescrum
- License: mit
- Created: 2018-03-14T10:27:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-30T15:38:11.000Z (almost 7 years ago)
- Last Synced: 2024-11-08T01:37:35.727Z (2 months ago)
- Language: TypeScript
- Size: 1.37 MB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vsts-icescrum
iceScrum extension for Visual Studio Team Service.## prerequisites
First, install typescript and tfx CLI globally
```
npm install -g typescript
npm i -g tfx-cli
```
*More info at : [VSTS DevOps Task SDK](https://github.com/Microsoft/vsts-task-lib/blob/master/node/README.md)*On first setup npm install must be runned from both the project root directory and notifyIceScrumTask directory.
```
npm install
cd notifyIceScrumTask
npm install
```Then all other commands should be runned from the project root directory.
## test extension locally
Create a 'PAT.txt' file in root directory containing the Personnal Access Token to use for test
Eventually edit 'test.sh' to edit other test parameters.
Then Launch task locally with:
```
npm test
```## package extension
package vsix extension with vss-web-extension-sdk.
*The version number is taken vss-extension.json*
```
npm run build
```