timiyay

Results 17 comments of timiyay

At present, our setup is working OK on a mix of Ember 3.12 and 3.16 (which has Octane stuff). I'll update this issue if I hit the same problem without...

Is the intent to introduce Embroider-by-default in Ember 4.0? Our experience of many aborted attempts to start using Embroider is that the Ember addon ecosystem has some non-trivial incompatibilities, as...

@cah-briangantzler I'll circle back to our embroider PRs, revive it, and dig up the stack traces. It's possible our long-term usage of Mirage gives us a misunderstanding of how it...

Digging through the stack trace, it looks like the issue arises from: https://github.com/miragejs/ember-cli-mirage/blob/f6a973208ccebf077a25c5b42eb244c2a532a2e4/addon/start-mirage.js#L19-L23 Our app doesn't currently `export default` from `mirage/config.js`, which results in `baseConfig` being `undefined`, which causes the...

Looks like this has come up briefly in Ember Discord in April: Problem: https://discord.com/channels/480462759797063690/568935504288940056/834541111065313330 OP Solution: https://discord.com/channels/480462759797063690/568935504288940056/834876984416141322 Ed Faulkner's explanation: https://discord.com/channels/480462759797063690/568935504288940056/834888941881655306 > ef4: I've seen this before. I don't know...

Thanks for taking a look! A redacted version of our config is: ```js import appConfig from 'my-app/config/environment' import { createServer, discoverEmberDataModels } from 'ember-cli-mirage' /** * Pass all route handlers...

Adding the empty `export default` fixes this immediate issue. A side issue is that it causes a string of test failures when building via embroider, with the error message: ```...

Thankyou so much for all your suggestions @cah-briangantzler. I've made a proposed fix PR in https://github.com/miragejs/ember-cli-mirage/pull/2213 for the specific issue reported here. I'm still getting myriad test failures related to...

I have a need for this type of feature as well, to filter out the noise of all the automated Dependabot PRs. I'm doing some research on how difficult it'd...

I'm still investigating exactly what's causing our issues, it may be a combination of issues related to Yarn workspaces hoisting, and the fact that `[email protected]` adds `@ember/string` as a dependency....