Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
carlowahlstedt committed Sep 28, 2018
2 parents 932ea5b + adfd6b1 commit 2639fdc
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 12 deletions.
2 changes: 1 addition & 1 deletion NewmanPostman/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 3,
"Minor": 0,
"Patch": 10
"Patch": 14
},
"demands": [],
"groups": [
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The [source](https://github.com/carlowahlstedt/NewmanPostman_VSTS_Task/) to this

### Minimum supported environments ###

- Visual Studio Team Services
- Azure DevOps Services
- Team Foundation Server

### Contributors ###
Expand All @@ -71,6 +71,7 @@ We thank the following contributor(s) for this extension:

- [sunmorgus](https://github.com/sunmorgus)
- [sebcaps](https://github.com/sebcaps)
- [jeffpriz](https://github.com/jeffpriz)

### Feedback ###

Expand Down
47 changes: 47 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
resources:
- repo: self
clean: true
queue:
name: Hosted VS2017
demands: npm

#Your build pipeline references an undefined variable named ‘Extension.OutputPath’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false


- task: Npm@1
displayName: 'npm install-task-lib'
inputs:
command: custom

verbose: false

customCommand: 'run install-task-lib'


- task: Npm@1
displayName: 'npm compile'
inputs:
command: custom

verbose: false

customCommand: 'run compile'


- task: ms-devlabs.vsts-developer-tools-build-tasks.package-extension-build-task.PackageVSTSExtension@1
displayName: 'Package Extension: '
inputs:
outputPath: 'drop\output.vsix'


- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: drop'
inputs:
PathtoPublish: '$(Extension.OutputPath)'


18 changes: 9 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
},
"exclude": [
"node_modules",
"NewmanPostman/node_modules"
]
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
},
"exclude": [
"node_modules",
"NewmanPostman/node_modules"
]
}
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "NewmanPostman",
"version": "1.0.30",
"version": "1.0.33",
"name": "Newman the cli Companion for Postman",
"scopes": [],
"description": "Using Newman, one can effortlessly run and test a Postman Collections directly from the command-line. Now in a task!",
Expand Down

0 comments on commit 2639fdc

Please sign in to comment.