Skip to content

Commit 26d300e

Browse files
committed
Updated dependencies
1 parent b5e3203 commit 26d300e

File tree

7 files changed

+385
-228
lines changed

7 files changed

+385
-228
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ We use [semantic versioning](http://semver.org/):
44
- MINOR version when you add functionality in a backwards-compatible manner, and
55
- PATCH version when you make backwards compatible bug fixes.
66

7+
# 1.5.1
8+
- [fix] updated third party dependencies to recent versions
9+
710
# 1.5.0
811
- [feature] work item integration: allow configuring the types of work items that should receive a certain badge
912
- [fix] updated third party dependencies to recent versions

package-lock.json

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "Teamscale-AzureDevOps-Extension",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Teamscale integration into Azure DevOps",
55
"main": "index.js",
66
"scripts": {
77
"replace": "echo fixes https://github.com/Microsoft/vss-web-extension-sdk/issues/112; replace \"\\s+nodeType: number;\" \"\" \"node_modules/vss-web-extension-sdk/typings/vss.d.ts\" -r",
8-
"compileTypeScript": "$(npm bin)/tsc && cd reportUploadTask && npm run compile",
8+
"compileTypeScript": "npx tsc && cd reportUploadTask && npm run compile",
99
"restore": "npm ci && cd reportUploadTask && npm run restore",
1010
"build": "npm run restore && npm run replace && npm run compileTypeScript",
1111
"pruneDepsUploadTask": "cd reportUploadTask && npm prune --production && cd ..",
12-
"package": "npm run build && npm run pruneDepsUploadTask && $(npm bin)/tfx extension create --output-path ./deployment/",
13-
"publish": "npm run build && npm run pruneDepsUploadTask && $(npm bin)/tfx extension publish --output-path deployment --token $(node scripts/cat.js token)",
12+
"package": "npm run build && npm run pruneDepsUploadTask && npx tfx extension create --output-path ./deployment/",
13+
"publish": "npm run build && npm run pruneDepsUploadTask && npx tfx extension publish --output-path deployment --token $(node scripts/cat.js token)",
1414
"test": "cd reportUploadTask && npm run test"
1515
},
1616
"keywords": [],
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"replace": "^1.2.2",
25-
"tfx-cli": "^0.22.2",
25+
"tfx-cli": "^0.22.6",
2626
"typescript": "^5.9.3",
2727
"shelljs": "^0.10.0"
2828
},

0 commit comments

Comments
 (0)