Skip to content
Snippets Groups Projects
Commit 6d1a7924 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Update deps

parent 29f677d3
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,13 @@ export default { ...@@ -23,6 +23,13 @@ export default {
format: 'esm', format: 'esm',
sourcemap: true sourcemap: true
}, },
onwarn: function (warning, warn) {
// keycloak bundled code uses eval
if (warning.code === 'EVAL') {
return;
}
warn(warning);
},
plugins: [ plugins: [
del({ del({
targets: 'dist/*' targets: 'dist/*'
......
import 'vpu-auth'; import {Auth} from 'vpu-auth';
import {i18n} from './i18n.js'; import {i18n} from './i18n.js';
import {css, html} from 'lit-element'; import {css, html} from 'lit-element';
import {ScopedElementsMixin} from '@open-wc/scoped-elements'; import {ScopedElementsMixin} from '@open-wc/scoped-elements';
...@@ -21,7 +21,7 @@ class PersonProfileDemo extends ScopedElementsMixin(VPULitElement) { ...@@ -21,7 +21,7 @@ class PersonProfileDemo extends ScopedElementsMixin(VPULitElement) {
static get scopedElements() { static get scopedElements() {
return { return {
'vpu-person-profile': PersonProfile, 'vpu-person-profile': PersonProfile,
'vpu-auth': customElements.get('vpu-auth'), 'vpu-auth': Auth,
'vpu-person-select': customElements.get('vpu-person-select'), 'vpu-person-select': customElements.get('vpu-person-select'),
}; };
} }
......
auth @ fbf83528
Subproject commit 0d2610cee764128529a71629c2adb1922e2849ed Subproject commit fbf83528159f7d3eeceedff287831dece6b9b46d
common @ 821137e2
Subproject commit 833dd224c7ecab1caf509d83f58211c2346e8b19 Subproject commit 821137e246fdcee9ccb04e4cfe420e7abec3186e
person-select @ 1f49e4b3
Subproject commit 6e35c308bb47fea7d5fe09095007dcc152331bef Subproject commit 1f49e4b34a978139cda18f03aecb9a1f18757591
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment