Thomas Gossmann

Results 178 comments of Thomas Gossmann

I actually do like having all these imports. Yep, sometimes its a lot, but that makes all these dependencies visible (My maximum is 27 imports :trollface:). The problem yet, is...

This topic requires a lot of research, or basically the one I did for the past years and started to put into blog posts. I'm currently nearing ~10k words (so...

Oh, so wonderful thoughts in your answer :) PS. While typing my answer @c1rrus also posted (I will read his post after I posted mine). This is a response to...

I'm reading through this, but especially on @ddamato's post I came to realize we've been using very overloaded terms and everybody is defining them differently, which in turn makes it...

Run into this as well, here is my relevant snippet: ```hbs {{#let (unique-id) as |runtimeId|}} {{t "a.b.c"}} ... {{/let}} {{#let (unique-id) as |paymentId|}} {{t "a.b.d"}} ... {{/let}} ```

Thanks, I do understand the opposite of it :) However, it is still possible to achieve both, by add sealing to properties. I will work on some code later and...

here we go, simply seal the properties that you don't want to be overridden from the generator and builders stay in control over their own configuration.

Here is a PR: https://github.com/gossi/ember-command/pull/22 But I think, I failed on CI setup for github, so must be done locally: 1. Checkout 2. `pnpm install` 3. `pnpm --filter ember-command run...

I took recent main branch from `ember-command` today with `[email protected]` to run the try exam with the `[email protected]` and that worked. I think, this means, this can be closed. Thanks...

Every process that uses `import { hbs } from 'ember-cli-htmlbars` needs to have the babel configuration or else it will not work. I was working with storybook more intense lately...