NullVoxPopuli

Results 2064 comments of NullVoxPopuli

I was able to get passed this with pnpm's packageExtensions feature: ```js "pnpm": { "packageExtensions": { "[email protected]": { "dependencies": { "@glimmer/syntax": "^0.27.0", "@glimmer/compiler": "^0.27.0" } } } } ```

Can confirm. These folks have used that solution so far: https://github.com/NullVoxPopuli/fix-bad-declaration-output/network/dependents Gonna add it to the ts blueprint for v2 addons

Was digging in to this yesterday, and it looks like the generated declarations may slightly be wrong? They're not using `declare` when exporting a const, and that breaks the ts...

ember-concurrency has a bug in their types, and they may need to add this inline-rollup plugin: https://github.com/universal-ember/ember-primitives/blob/main/ember-primitives/rollup.config.mjs#L34 ```js { name: "Build Declarations", closeBundle: async () => { /** * Generate...

I was able to easily reproduce the issue you mentioned in discord in the test suite. Here is what the tests look like to see how to test this sort...

after some more digging, it seems the types are wrong -- how are they generated? a d.ts file should have `declare` if a `const` is not going to have an...

New behavior in 3.0.0: - if there is an update when the page loads, a notification may be presented (update available). - if there is no update when the page...

emberclear.io has this issue. Will need to document what steps were to resolve

@calebmer did you manage to get this working?