luke.js

Results 11 comments of luke.js

Same issue here after adding `"@types/ember-data": "^3.1.7"`.

This issue mysteriously disappeared for us. I think I either had a missing dependency or something wrong in my tsconfig.

Finally figured this out! If you've got `@types/ember-data` installed, you need to add the file in `types/ember-data/types/registries/model.d.ts` with this: ``` export default interface ModelRegistry { [key: string]: any; } ```...

Was any progress made on this? Ran into the same issue. My current workaround is probably going to be to set `setDefaultAutoClear` to `false` during acceptance tests, and manually clearing...

Same problem when developing a lazily-loaded in-repo ember engine. The solution seems to be to make sure `@ember-decorators/babel-transforms` and `ember-decorators` are in the `dependencies` block of the host.

We worked around it by using the `afterOptionsComponent` hook. We've got a component that renders a "Load more..." button that loads in the next page of records. It's working really...

Here's the entirety of our `setup-rendering-test` file: ```typescript import { setupRenderingTest } from 'ember-qunit'; import engineResolverFor from 'ember-engines/test-support/engine-resolver-for'; import Resolver from 'dummy/resolver'; export default function (hooks: NestedHooks): void { const...

Came here to report this. If I visit https://ember-basic-dropdown.com/ in Chrome I get `[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to...

Related - just tried this on a large Ember project, and the language server churned for an extended period chewing through the `tmp` folder. Seems like it needs to either...