ember-ast-helpers icon indicating copy to clipboard operation
ember-ast-helpers copied to clipboard

Glimmer dependencies missing (and too old)

Open NullVoxPopuli opened this issue 2 years ago • 1 comments

This was mentioned here: https://github.com/cibernox/ember-ast-helpers/issues/23

But Glimmer is now on 0.88. :sweat_smile:

It seems also the glimmer dependencies need to move to dependencies.

I get this error:

 Cannot find module '@glimmer/syntax'
 Require stack:
 - <deps>/[email protected]/node_modules/ember-ast-helpers/build-time-component.js

NullVoxPopuli avatar Feb 02 '24 21:02 NullVoxPopuli

I was able to get passed this with pnpm's packageExtensions feature:

"pnpm": {
    "packageExtensions": {
 
      "[email protected]": {
        "dependencies": {
          "@glimmer/syntax": "^0.27.0",
          "@glimmer/compiler": "^0.27.0"
        }
      }
    }

}

NullVoxPopuli avatar Feb 02 '24 21:02 NullVoxPopuli