Skip to content
This repository was archived by the owner on Oct 30, 2020. It is now read-only.

Commit d9abad5

Browse files
author
Paulo Baima
committed
2 parents 7972a21 + 41171a8 commit d9abad5

32 files changed

+3316
-3004
lines changed

.devcontainer/devcontainer.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
// Use 'settings' to set *default* container specific settings.json values on container create.
88
// You can edit these settings after create using File > Preferences > Settings > Remote.
99
"settings": {
10-
"terminal.integrated.shell.linux": "/bin/bash"
10+
"terminal.integrated.shell.linux": "/bin/bash",
11+
// Mocha Explorer Config
12+
"mochaExplorer.cwd": "unify-release-build-task",
13+
"mochaExplorer.mochaPath": "unify-release-build-task/node_modules/mocha",
14+
"mochaExplorer.files": "unify-release-build-task/tests/**/*.ts",
15+
"mochaExplorer.require": "ts-node/register",
16+
"mochaExplorer.logpanel": true
1117
},
1218

1319
// Uncomment the next line if you want to publish any ports.
@@ -23,6 +29,8 @@
2329

2430
// Add the IDs of extensions you want installed when the container is created in the array below.
2531
"extensions": [
26-
"ms-vscode.vscode-typescript-tslint-plugin"
32+
"ms-vscode.vscode-typescript-tslint-plugin",
33+
"hbenl.vscode-mocha-test-adapter",
34+
"deepscan.vscode-deepscan"
2735
]
2836
}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ node_modules
33
*.vsix
44
unify-release-build-task/bin
55
unify-release-build-task/testReport
6-
unify-release-build-task/.nyc_output
6+
unify-release-build-task/.nyc_output
7+
/bin
8+
.nyc_output
9+
**/.taskkey

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
],
3333
"port": 9229,
3434
"outFiles": ["${workspaceRoot}/unify-release-build-task/bin"],
35-
"sourceMaps": true
35+
"sourceMaps": true,
36+
"timeout": 30000
3637
}
3738
]
3839
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"deepscan.enable": true
3+
}

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# azuredevops-unify-release
22

33

4-
### Development:
5-
[![Build status](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_apis/build/status/Development%20Build)](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_build/latest?definitionId=7)
6-
![Azure DevOps tests](https://img.shields.io/azure-devops/tests/padasil/AzureDevOps%20-%20Unify%20Release/7)
7-
![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/padasil/AzureDevOps%20-%20Unify%20Release/7)
4+
### Develop Branch:
5+
[![Build status](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_apis/build/status/Develop%20Build)](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_build/latest?definitionId=9)
6+
![Azure DevOps tests](https://img.shields.io/azure-devops/tests/padasil/AzureDevOps%20-%20Unify%20Release/9)
7+
![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/padasil/AzureDevOps%20-%20Unify%20Release/9)
8+
9+
### Release Branch: (1.1) - Preview Deployment
10+
[![Build status](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_apis/build/status/Release%20Preview%20Build)](https://dev.azure.com/padasil/AzureDevOps%20-%20Unify%20Release/_build/latest?definitionId=7)
11+
![Release](https://vsrm.dev.azure.com/padasil/_apis/public/Release/badge/39952b49-664c-4156-be6c-8f143e967f22/1/1)
12+
![Azure DevOps tests](https://img.shields.io/azure-devops/tests/padasil/AzureDevOps%20-%20Unify%20Release/9)
13+
![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/padasil/AzureDevOps%20-%20Unify%20Release/9)

unify-release-build-task/.nyc_output/processinfo/index.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{
2-
"extension": [
3-
".ts"
4-
]
1+
{
2+
"extension": [
3+
".ts"
4+
]
55
}

unify-release-build-task/.taskkey

Lines changed: 0 additions & 1 deletion
This file was deleted.

unify-release-build-task/bin/azureDevOpsClient.js

Lines changed: 0 additions & 147 deletions
This file was deleted.

unify-release-build-task/bin/azureDevOpsClient.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)