Skip to content

Commit fd9815a

Browse files
authored
Merge pull request #1394 from microsoftgraph/gkoros/fix-compilation-warnings
fix compilation warnings
2 parents 437cade + f59e175 commit fd9815a

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ test/development/secrets.ts
3131
.idea/*
3232

3333
testResult.xml
34+
test-results.xml
3435

3536
test-esm/lib/*

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/microsoft-graph-client",
3-
"version": "3.0.0-Preview.3",
3+
"version": "3.0.0-Preview.4",
44
"description": "Microsoft Graph Client Library",
55
"keywords": [
66
"Microsoft",
@@ -26,7 +26,8 @@
2626
"lib/",
2727
"src/",
2828
"authProviders/",
29-
"shims.d.ts"
29+
"shims.d.ts",
30+
"authProviderOptions"
3031
],
3132
"scripts": {
3233
"build": "npm run pre-build && npm run build:sub_cjs && npm run build:sub_es && rollup --bundleConfigAsCjs -c",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* -------------------------------------------------------------------------------------------
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4+
* See License in the project root for license information.
5+
* -------------------------------------------------------------------------------------------
6+
*/
7+
export { TokenCredentialAuthenticationProviderOptions } from "./ITokenCredentialAuthenticationProviderOptions";
8+
export { TokenCredentialAuthenticationProvider } from "./TokenCredentialAuthenticationProvider";
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* -------------------------------------------------------------------------------------------
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4+
* See License in the project root for license information.
5+
* -------------------------------------------------------------------------------------------
6+
*/
7+
export { AuthCodeMSALBrowserAuthenticationProvider } from "./AuthCodeMSALBrowserAuthenticationProvider";

0 commit comments

Comments
 (0)