Marc Grue
Marc Grue
I believe [this commit](https://github.com/marcgrue/autowire/commit/4725ce3fd7ebbe7e39232d33aa1848594b94df6a) solves this issue
If we could switch between version and component family, like http://framework.zend.com/manual/1.11/en/ (notice the selectors in the right column) then I think it would be a big leap forward! If a...
Workaround by using platform-specific imports: ```scala // js import org.scalajs.macrotaskexecutor.MacrotaskExecutor import scala.concurrent.ExecutionContext trait MacroExecutorImpl { def globalImpl: ExecutionContext = MacrotaskExecutor.Implicits.global } // jvm import scala.concurrent.ExecutionContext trait MacroExecutorImpl { def globalImpl:...
Thanks for the explanation! When coding shared code though, one needs to have both implementations anyway somehow and it would be nice without workarounds. Maybe the subject of micro/macrotasks are...
How many shims are we potentially talking about?