Merge pull request #1686 from ing-bank/fix/export-Directive

Fix/export directive
This commit is contained in:
knorgias 2022-05-09 17:54:44 +02:00 committed by GitHub
commit 5751d49d16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/core': patch
---
export Directive from core package

View file

@ -37,6 +37,7 @@ export {
reparentNodes, reparentNodes,
removeNodes, removeNodes,
} from 'lit-html'; } from 'lit-html';
export { Directive } from 'lit-html/directive.js';
export { asyncAppend } from 'lit-html/directives/async-append.js'; export { asyncAppend } from 'lit-html/directives/async-append.js';
export { asyncReplace } from 'lit-html/directives/async-replace.js'; export { asyncReplace } from 'lit-html/directives/async-replace.js';
export { cache } from 'lit-html/directives/cache.js'; export { cache } from 'lit-html/directives/cache.js';