You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When upgrading to Ember 5.9 we're seeing a huge number of deprecation messages in our build sourced in glimmer-vm and triggered here in packages/compat/src/resolver-transform.ts (in several places) when staticHelpers is enabled.
DEPRECATION: The this property on path nodes is deprecated, use head.type instead
DEPRECATION: The parts property on path nodes is deprecated, use head and tail instead
DEPRECATION: The this property on path nodes is deprecated, use head.type instead
...
Reproduction:
ember new test-app --pnpm
cd test-app
pnpm add -D @embroider/core @embroider/compat @embroider/webpack webpack
Enable embroider and static helpers in ember-cli-build.js
pnpm build
> [email protected] build
> ember build --environment=production
Environment: production
DEPRECATION: The this property on path nodes is deprecated, use head.type instead
DEPRECATION: The parts property on path nodes is deprecated, use head and tail instead
The text was updated successfully, but these errors were encountered:
When upgrading to Ember 5.9 we're seeing a huge number of deprecation messages in our build sourced in glimmer-vm and triggered here in
packages/compat/src/resolver-transform.ts
(in several places) whenstaticHelpers
is enabled.Reproduction:
Enable embroider and static helpers in
ember-cli-build.js
The text was updated successfully, but these errors were encountered: