Joe Zimmerman
Joe Zimmerman
Maybe allow people to use `` directly as a component in their templates and let them specify attributes directly on it, and then when compiling, if you see the `ile-root`...
I'm running into the same issue with Babel. I don't see a plugin to let Babel understand the new `import` function either. https://www.npmjs.com/package/babel-plugin-dynamic-import-webpack sorta does the trick, but converts it...
@aboodz You don't need to install SystemJS to use System.import. Webpack already handles it.
@aboodz Ah. I didn't realize you were using TS
Thank you for your kind words. I simply discontinued this plug in because I haven't touched it in a long time and I don't see the point to putting more...
Good to hear. :smile:
Yup, agree with @gombek. It's breaking when `NODE_ENV` is `"production"`. If I just change what the DefinePlugin's value for `process.env.NODE_ENV` equals, it doesn't break anything, but if `NODE_ENV` is actually...
I was also thinking it'd be nice to be able to split it based in the barcode types as well. Tree Shaking doesn't seem to be removing the excess parts.
Just tried something: there's a Suspense at the root of the AttributeValuesContainer. If I remove it, then the problem goes away.
The `:not` selector part is completely unnecessary. Just put it in the normal `li` styles and the `li:nth-child...` stuff will override it when it's not a prime number. ```css body...