Devon Govett

Results 468 comments of Devon Govett

What's the usecase for exposing the source code of a typescript file?

Those sound like very narrow usecases for which prepending `raw:` wouldn't be unreasonable. You'd need to use `raw:` if importing such an asset in normal code as well. But I'll...

Appears to be generating two bundles named `content.css`. This is because there is a `content.css` file referenced from `manifest.json` ([marked](https://github.com/parcel-bundler/parcel/blob/c3940191602a3a5f56bfd4fe35ef990163870c41/packages/transformers/webextension/src/WebExtensionTransformer.js#L92) as `needsStableName`, not sure if required), and the sibling CSS...

I don't really want to add parcel specific things as HTML attributes. we could just make dependencies from `` optional, then it would create a dependency when needed but not...

@mvpix is that showing a build after editing a single file, or is that a fresh build of your whole app? Any more info you can provide that could help?

At the moment we're focused on blockers for a stable v2 release in the next month or so. This will likely be sometime after that.

FWIW, I looked into implementing this not long ago, using the library linked above. I couldn't figure out where it should go in the resolution algorithm though. Node has two...

> it's disappointing that Parcel's JSX docs say Preact works out of the box. Well, it did work out of the box until Preact broke it I guess. 😉

Hmm preact also has a package.json in the jsx-runtime directory, but not in jsx-dev-runtime: https://unpkg.com/browse/[email protected]/jsx-runtime/package.json. Maybe we should only do this for react and not preact? https://github.com/parcel-bundler/parcel/blob/v2/packages/transformers/js/src/JSTransformer.js#L673