Edward Faulkner
Edward Faulkner
The recent build refactors should have made it easier now to run our tests under both legacy decorators and stable decorators. That would allow us to pick back up https://github.com/emberjs/ember.js/pull/20507
The glimmerjs/glimmer.js monorepo is littered with "standalone Glimmer.js" functionality that we don't use and that is not being maintained. But it also contains two packages that are critical to ember:...
In the process of starting to write guides content for template tag, @kategengler and I decided it's too clunky to force new learners to mix HBS and GJS. In practice,...
0.2.0-alpha.2 is marked as a prerelease on GitHub, but on NPM is was published to the "latest" tag, which will be served by default to everyone. Was this intentional? If...
If you install `ember-cli-fastboot` 4.1.5, you will always get two different versions of `fastboot` in your dependency graph: ``` ember-cli-fastboot 4.1.5 ├── fastboot 4.1.5 └─┬ fastboot-express-middleware 4.1.2 └── fastboot 4.1.2...
This announces the template tag codemod. Remaining tasks before we publish this: - [ ] land the remaining breaking changes to the command line flags - [ ] publish stable...
In this example: ```glimmer-ts import { TemplateOnlyComponent } from '@ember/component/template-only'; function options(): any { return []; } export default {{#each (options) as |option|}}{{/each}} satisfies TemplateOnlyComponent; ``` Glint is underlying the...
Reproduction: 1. Using viscose glint extension, while viewing some ts or gts containing a browser API (I used `crypto.subtle.digest()`), jump to definition on the function. This will open a file...
This is a spike to demonstrate how I think a new minimalist Resolver implementation could work. It illustrates one thing that we should add in embroider itself, which is that...