fix(core): update

This commit is contained in:
Philipp Kunz 2021-12-14 01:59:50 +01:00
parent b63fac3f75
commit 12f6bb3317
3 changed files with 9 additions and 16 deletions

View File

@ -9,7 +9,7 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web && tsbundle npm)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.28",

View File

@ -9,7 +9,7 @@ export {
// third party scope
import { css, unsafeCSS, LitElement } from 'lit';
import { property } from 'lit/decorators';
import { property } from 'lit/decorators/property.js';
const lit = {
css,
unsafeCSS,

View File

@ -1,24 +1,17 @@
import { CssManager } from './dees-element.classes.cssmanager';
// lit exports
export {
html,
TemplateResult,
css,
unsafeCSS,
} from 'lit';
export { html, TemplateResult, css, unsafeCSS } from 'lit';
export {
customElement,
property,
state
} from 'lit/decorators'
export { customElement } from 'lit/decorators/custom-element.js';
export { property } from 'lit/decorators/property.js';
export { state } from 'lit/decorators/state.js';
// domtools exports
import * as domtools from '@designestate/dees-domtools';
export {
domtools
}
export { domtools };
// DeesElements exports
export { DeesElement } from './dees-element.classes.dees-element';