Skip to content

Commit 7f950a4

Browse files
committed
Fully qualify import paths
1 parent 01c872a commit 7f950a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+481
-443
lines changed

dist/oidc-client.js

Lines changed: 182 additions & 163 deletions
Large diffs are not rendered by default.

dist/oidc-client.min.js

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

index.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { Log } from './src/Log';
5-
import { OidcClient } from './src/OidcClient';
6-
import { OidcClientSettings } from './src/OidcClientSettings';
7-
import { WebStorageStateStore } from './src/WebStorageStateStore';
8-
import { InMemoryWebStorage } from './src/InMemoryWebStorage';
9-
import { UserManager } from './src/UserManager';
10-
import { AccessTokenEvents } from './src/AccessTokenEvents';
11-
import { MetadataService } from './src/MetadataService';
12-
import { CordovaPopupNavigator } from './src/CordovaPopupNavigator';
13-
import { CordovaIFrameNavigator } from './src/CordovaIFrameNavigator';
14-
import { CheckSessionIFrame } from './src/CheckSessionIFrame';
15-
import { TokenRevocationClient } from './src/TokenRevocationClient';
16-
import { SessionMonitor } from './src/SessionMonitor';
17-
import { Global } from './src/Global';
18-
import { User } from './src/User';
4+
import { Log } from './src/Log.js';
5+
import { OidcClient } from './src/OidcClient.js';
6+
import { OidcClientSettings } from './src/OidcClientSettings.js';
7+
import { WebStorageStateStore } from './src/WebStorageStateStore.js';
8+
import { InMemoryWebStorage } from './src/InMemoryWebStorage.js';
9+
import { UserManager } from './src/UserManager.js';
10+
import { AccessTokenEvents } from './src/AccessTokenEvents.js';
11+
import { MetadataService } from './src/MetadataService.js';
12+
import { CordovaPopupNavigator } from './src/CordovaPopupNavigator.js';
13+
import { CordovaIFrameNavigator } from './src/CordovaIFrameNavigator.js';
14+
import { CheckSessionIFrame } from './src/CheckSessionIFrame.js';
15+
import { TokenRevocationClient } from './src/TokenRevocationClient.js';
16+
import { SessionMonitor } from './src/SessionMonitor.js';
17+
import { Global } from './src/Global.js';
18+
import { User } from './src/User.js';
1919

2020
export default {
2121
Log,
@@ -33,4 +33,4 @@ export default {
3333
SessionMonitor,
3434
Global,
3535
User
36-
};
36+
};

lib/oidc-client.js

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

lib/oidc-client.min.js

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

src/AccessTokenEvents.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { Log } from './Log';
5-
import { Timer } from './Timer';
4+
import { Log } from './Log.js';
5+
import { Timer } from './Timer.js';
66

77
const DefaultAccessTokenExpiringNotificationTime = 60; // seconds
88

src/CheckSessionIFrame.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { Log } from './Log';
4+
import { Log } from './Log.js';
55

66
const DefaultInterval = 2000;
77

src/CordovaIFrameNavigator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { CordovaPopupWindow } from './CordovaPopupWindow';
4+
import { CordovaPopupWindow } from './CordovaPopupWindow.js';
55

66
export class CordovaIFrameNavigator {
77

src/CordovaPopupNavigator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { CordovaPopupWindow } from './CordovaPopupWindow';
4+
import { CordovaPopupWindow } from './CordovaPopupWindow.js';
55

66
export class CordovaPopupNavigator {
77

src/CordovaPopupWindow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { Log } from './Log';
4+
import { Log } from './Log.js';
55

66
const DefaultPopupFeatures = 'location=no,toolbar=no,zoom=no';
77
const DefaultPopupTarget = "_blank";

0 commit comments

Comments
 (0)