Edward Faulkner
Edward Faulkner
Error dump: ``` Build Error (Babel) in bug-repro/components/example.js /Users/edward/hacking/bug-repro/bug-repro/components/example.js: Attempted to resolve a component in a strict mode template, but that value was not in scope: with: | | with...
Maybe we should at least put this in changelog. That's where I first looked.
I realized why these weren't caught in this app during 3.28 deprecation cleanup. They were only ever build-time deprecations, and our support for those isn't great. IMO we should try...
`isTesting` has a runtime implementation because it can actually be changed at runtime (the test suite sets it to true). `isDevelopingApp` cannot be changed at runtime. > However, isDevelopingApp does...
pdf.js. is using top-level await. We can't make that work until we do https://github.com/emberjs/rfcs/pull/938. A workaround until then is to access pdf.js via dynamic import only: ```diff diff --git a/app/routes/application.js...