Skip to content

Commit af3ddf3

Browse files
authored
Bump msal-node version (#313)
* remove mockery ref * bump package ver * added utlity-common * bump msal-node ver * bump package ver * bump package version
1 parent d615f01 commit af3ddf3

File tree

8 files changed

+60
-21
lines changed

8 files changed

+60
-21
lines changed

common-npm-packages/azure-arm-rest/Tests/L0-azure-arm-app-service-kudu-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as assert from 'assert';
1+
import assert = require("assert");
22
import * as ttm from 'azure-pipelines-task-lib/mock-test';
33
import * as path from 'path';
44

common-npm-packages/azure-arm-rest/Tests/L0-azure-arm-app-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as assert from 'assert';
1+
import assert = require("assert");
22
import * as ttm from 'azure-pipelines-task-lib/mock-test';
33
import tl = require('azure-pipelines-task-lib/task');
44
import * as path from 'path';

common-npm-packages/azure-arm-rest/Tests/L0-azure-arm-appinsights-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as assert from 'assert';
1+
import assert = require("assert");
22
import * as ttm from 'azure-pipelines-task-lib/mock-test';
33
import tl = require('azure-pipelines-task-lib');
44
import * as path from 'path';

common-npm-packages/azure-arm-rest/Tests/L0-azure-arm-appinsights-webtests-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as assert from 'assert';
1+
import assert = require("assert");
22
import * as ttm from 'azure-pipelines-task-lib/mock-test';
33
import tl = require('azure-pipelines-task-lib');
44
import * as path from 'path';

common-npm-packages/azure-arm-rest/Tests/L0-azure-arm-resource-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as assert from 'assert';
1+
import assert = require("assert");
22
import * as ttm from 'azure-pipelines-task-lib/mock-test';
33
import tl = require('azure-pipelines-task-lib');
44
import * as path from 'path';

common-npm-packages/azure-arm-rest/package-lock.json

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

common-npm-packages/azure-arm-rest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-pipelines-tasks-azure-arm-rest",
3-
"version": "3.238.0",
3+
"version": "3.239.0",
44
"description": "Common Lib for Azure ARM REST apis",
55
"repository": {
66
"type": "git",
@@ -13,7 +13,7 @@
1313
},
1414
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
1515
"dependencies": {
16-
"@azure/msal-node": "1.14.5",
16+
"@azure/msal-node": "^2.7.0",
1717
"@types/jsonwebtoken": "^8.5.8",
1818
"@types/mocha": "^5.2.7",
1919
"@types/node": "^10.17.0",
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"shelljs": "^0.8.5",
33-
"typescript": "4.0.2"
33+
"typescript": "^4.9.5"
3434
},
3535
"scripts": {
3636
"build": "node ../build-scripts/downloadArchive.js https://vstsagenttools.blob.core.windows.net/tools/openssl/1.0.2/M138/openssl_fix_whitespace.zip ./openssl && node make.js"

common-npm-packages/azure-arm-rest/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es6",
5-
"declaration": true
5+
"declaration": true,
6+
"esModuleInterop": true
67
},
78
"exclude": [
89
"node_modules"

0 commit comments

Comments
 (0)