Dan Freeman
Dan Freeman
Just a quick update on this: I spent some time over the weekend puzzling out how to type the way traits work. It seems like it's possible, but... complicated 😄...
I picked this up to work on it over the holidays and wound up a little stumped by the change that landed in https://github.com/miragejs/miragejs/pull/695 and what problem it was addressing....
It looks like there's an issue for this in the Babel repo, but it hasn't gotten any love yet https://github.com/babel/babel/issues/10059
Building a codemod for migrating to ES classes has been on my 'projects to maybe pursue' list for a while now. I don't think I'll have the capacity to drive...
> May not implement @value. It seems like CSS variables have superseded the need for this, and it looks hard to parse since it effects every single property... The "import"...
@devongovett Reference/import-able hashed var names seem like they'd be a great way to fill the gap while building on top of platform-native features 👍 I think something along those lines...
We've done something similar where items are rendered in place in the collection and measured (in batches), then the layout is tweaked accordingly. It gets the job done, but I...
Yep, addons' `app` trees are merged with (and transpiled alongside) the host's, with the host's files taking precedence when there's a naming conflict. Unfortunately, with multiple possible extensions, two different...
This is effectively what ember-cli-typescript@2 is already doing today (though granted you have to opt into it by adding e-c-ts as a dependency). The prepublish build step we have there...
It's an interesting idea. Today adding the plugin is pretty trivial for us to do, but in the future (e.g. if we start getting things like swc in the mix)...