Skip to content

Commit

Permalink
Update library to support Node 16 (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyIvanov42 authored Jul 19, 2022
1 parent 1032df8 commit cb310bb
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 21 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ strategy:
versionSpec: '12.x'
'Node 14':
versionSpec: '14.x'
'Node 16':
versionSpec: '16.x'

steps:
- task: NodeTool@0
Expand Down
119 changes: 100 additions & 19 deletions test/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"homepage": "https://github.com/Microsoft/azure-devops-node-api#readme",
"dependencies": {
"azure-devops-node-api": "file:../_build",
"typed-rest-client": "file:../_build"
"typed-rest-client": "file:../_build/node_modules/typed-rest-client"
}
}
2 changes: 1 addition & 1 deletion test/units/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import nock = require('nock');
import os = require('os');
import vsom = require('../../_build/VsoClient');
import WebApi = require('../../_build/WebApi');
import * as rm from '../../_build/node_modules/typed-rest-client/RestClient';
import * as rm from 'typed-rest-client/RestClient';
import { ApiResourceLocation } from '../../_build/interfaces/common/VsoBaseInterfaces';
import semver = require('semver');

Expand Down

0 comments on commit cb310bb

Please sign in to comment.