Andreas Minnich
Andreas Minnich
> The above fix is incomplete. Here's what did work in our app. Note I still am advocating for fixing the root cause (as currently we are hacking into internals...
Meanwhile you can try to add a resolution to package.json, like: ``` "resolutions": { "ember-macro-helpers": "^4.0.0" }, ```
In my case, I'm overriding the helper like this ```ts this.owner.unregister('helper:link'); this.owner.register( 'helper:link', class extends Helper { compute(positional: LinkHelperPositionalParams, named: LinkHelperNamedParams) { return linkFor(named.route, named.models); } } ); ``` And...
We're working with this branch currently https://github.com/lolmaus/ember-cli-deprecation-workflow/tree/ember-debug ``` "ember-cli-deprecation-workflow": "github:lolmaus/ember-cli-deprecation-workflow#ember-debug", ``` But it requires a few changes you can check in the dummy app: - https://github.com/lolmaus/ember-cli-deprecation-workflow/blob/ember-debug/tests/dummy/app/deprecation-workflow.js - https://github.com/lolmaus/ember-cli-deprecation-workflow/blob/ember-debug/tests/dummy/app/app.js#L5
We're also seeing a few bugs in 4.0.1 and 4.0.2 and are reverting back to 3.0.0 for that reason. Either the prepended path was missing or it was concatenated incorrectly.
:+1: We are currently experiencing a similar issue when moving from rollup-plugin-ts to the recent embroider blueprint changes. The `build:types` script just silently completes but no declarations folder is created,...
Not sure if useful for others, but I'm using this simple workaround for now: Patch writeFile to search/replace .gts to .ts ```patch diff --git a/lib/cli/perform-check.js b/lib/cli/perform-check.js index 6bef94d92a5026f78073c8c35b6f8578df8e4173..632c5f3d2b98837b973c12dc28ff01b3346df8f1 100644 ---...
Thanks for moving the issue! Some more information about browser caching according to developers.google.com: - https://developers.google.com/speed/docs/insights/LeverageBrowserCaching "We recommend a minimum cache time of one week and preferably up to one...
Same here: updating content-tag removed the `import '@glint/template'` line, thanks :clap:! --- But I just found that we have a similar issue with ember-concurrency, where a `import 'ember-concurrency';` remains in...