parcel issue + missing plugin-proposal-class-properties
lifeart opened this issue · 5 comments
lifeart commented
lifeart commented
lifeart commented
lifeart commented
for tracked support - looks like we need Babel plugin
lifeart commented
partially working version: parcel-glimmer-donut.zip
(but, nested components won't work)
tldr:
this work:
import Component, { hbs } from '@glimmerx/component';
import Button from './Button';
export default class MyComponent extends Component {
static template = hbs`
<h1>Hello world!</h1>
<Button // fix it and it will broke app
`
}
this not:
import Component, { hbs } from '@glimmerx/component';
import Button from './Button';
export default class MyComponent extends Component {
static template = hbs`
<h1>Hello world!</h1>
<Button />
`
}
lifeart commented
solved!