Francesco Gringl-Novy
Francesco Gringl-Novy
I think this is actually due to typescript. I get the same thing updating from 3.7.5 to 3.8.2, which is in-range if using e.g. `typescript@^3.7.0`. Fixing it to e.g. `typescript@~3.7.5`...
Have you fixed the dependency like this: ``` "typescript": "~3.7.5" ``` Note the tilde instead of the caret? It works for me with 3.7.5 and ember 3.16.3.
Nice! I guess this could maybe be handled by this addon as well (?), but for now I can add it manually to my app.js as well!
For reference, you can now do this pretty easily yourself using `@ember/test-waiters`. Just wrap any promise in your application code like this: ```js import { waitForPromise } from '@ember/test-waiters'; export...
Is there a timeline for this? This is currently blocking me from trying out fastboot, so it would be really cool to have this functionality :)
Oh, I haven't tried it for a while - I was assuming it is still not working because this issue was still open. I'll try it soon, but great if...
I would like to maybe contribute some things to the engines docs, but am unsure about where to go/how to start.
I just created #307, and then saw this PR which does something like that. I'd like to have more information about the differences between devDependencies & dependencies, as that was...
This might not work for everyone, but we've recently moved our app + engines to a yarn workspace, roughly following this guide: https://medium.com/square-corner-blog/ember-and-yarn-workspaces-fca69dc5d44a Now we run the tests for the...
You'll need to set the resolver correctly. This should definitely go into the docs! You can find information on that here: https://github.com/ember-engines/ember-engines/issues/525#issuecomment-400130718 (and below)