NullVoxPopuli
NullVoxPopuli
this seems similar to something that would make my life way easier here: - https://github.com/universal-ember/kolay/blob/main/ui/src/typedoc/signature/component.gts#L94 - https://github.com/universal-ember/kolay/blob/main/ui/src/typedoc/signature/modifier.gts#L8 I'd love for a typedoc-provided runtime that takes the JSON output, maybe something...
Thanks for reporting! this is def an area we can and should improve on! tho, `prepare` will only run after `install`, so it wouldn't be good DX for post-install workflows....
I opened: https://github.com/pnpm/pnpm/issues/6088 I'm nervous about this change because of the lack of automatic re-syncing
> Can you link me to where they say it's correct? Specifically: - https://github.com/microsoft/TypeScript/issues/56571#issuecomment-1830436576 - https://github.com/microsoft/TypeScript/issues/56571#issuecomment-1830592139 > Have we tested what happens if the addon itself includes a import "ember-source/types"...
For "the simplest scenario", I'd like an in-package app created (not bottled) -- maybe via vite plugin or something (with all boilerplate files internalized / virtualized by default), so that...
hm, seems goofy -- we should probably set ci-provider to none. would you be willing to submit a PR trying that?
> Is there any reason why template-registry.js was added in publicEntrypoints? Can we safely remove? Mostly in that it's the easiest way to convert a `template-registry.ts` to a `d.ts` for...
I have a reduced example here: https://stackblitz.com/edit/stackblitz-starters-rbahsf?description=Starter%20project%20for%20Node.js,%20a%20JavaScript%20runtime%20built%20on%20Chrome%27s%20V8%20JavaScript%20engine&file=babel.config.json,package.json,tsconfig.json,rollup.config.mjs,src%2Findex.ts,dist%2Findex.js&title=node.new%20Starter Having a hard time reproducing the example -- it appears to have something to do with my code, as my simple examples don't...
I have a repro using the v2 addon blueprint here: https://stackblitz.com/edit/stackblitz-starters-qner5x? output dist/index.js ```js import '@glint/template'; import Component from '@glimmer/component'; class Hello extends Component {} export { Hello }; //#...
It happens when you forget `import type`!! So, ```ts import type { Thing } from 'whatever'; ``` will be fully removed but ```ts import { type Thing } from 'whatever';...