Eli Dupuis

Results 13 comments of Eli Dupuis

Great to hear! Admittedly, this stuff is relatively new to me as well. I've done some initial research and found https://github.com/salesforce/kagekiri, which provides "Shadow DOM-piercing query APIs". At this point,...

Hi all 👋 I've recently hit this issue where our components are in nested structure (e.g. `components/foo/index.hbs`) and this rule is flagging all occurrences of `this.foo`. The biggest issue I...

@bmish Interestingly, it appears that there _is_ a test for route templates already: https://github.com/ember-template-lint/ember-template-lint/blob/1ed2f4650e228279a5010ffc65594ec08aa9efe6/test/unit/rules/no-this-in-template-only-components-test.js#L13-L18 But something is missing because this rule definitely flags `this.foo` usage in our route templates.

Also hoping for a new release to be cut here 👋

Hi 👋 I'm just curious if there are any updates on this ESM migration and compatibility with ember-template-lint 4.0. Is there anything we can do to help out? Thanks in...

I'm assuming you mean adding a `timestamp` property to the current `buildInfo` hash? Something like: ``` buildInfo: { semver: '0.1.4-beta.1+53df212', version: '0.1.4', release: 'beta.1', build: '53df212', timestamp: 1234567890 } ```...

Where would the timestamp come from?

@spruce Definitely open to a PR. You think we can make these changes without updating Ember CLI? Or should that be tackled first? See #3.

Also, if we are going to put effort into this addon we should make sure that it's providing value that you can't accomplish with [ember-cli-app-version](https://github.com/EmberSherpa/ember-cli-app-version).

@spruce Thinking more about this the last couple of days I think this new service could simply `import config from '[app-name]/config/environment';` similar to how [ember-cli-app-version](https://github.com/EmberSherpa/ember-cli-app-version/blob/master/app/components/app-version.js#L3) does it. The current addon...