Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"git add"
]
},
"svelte": "src/components/components.module.js",
"svelte": "src/lib/index.js",
"dependencies": {
"oidc-client-ts": "^3.3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const name = pkg.name
.replace(/-\w/g, (m) => m[1].toUpperCase());

export default {
input: 'src/components/components.module.js',
input: 'src/lib/index.js',
output: [
{ file: pkg.module, format: 'es', sourcemap: true, name },
{ file: pkg.main, format: 'umd', sourcemap: true, name }
Expand Down
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
isAuthenticated,
isLoading,
userInfo,
} from './components/components.module.js';
} from './lib/index.js';

let styles = ""
let classes = ""
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
* Refresh the accessToken using the silentRenew method (hidden iframe)
*
*
* @param {Promise<UserManager>} oidcPromise
* @return bool indicated whether the token was refreshed, if false error will be set
* in the authError store.
Expand Down Expand Up @@ -68,7 +68,7 @@

/**
* Log out the current user.
*
*
* @param {Promise<UserManager>} oidcPromise
* @param {string} logout_url - specify the url to return to after login.
*/
Expand Down
File renamed without changes.