Ryan Tsao
Ryan Tsao
I think this would be a really nice feature. As a stopgap, I was thinking this could be implemented as an esbuild plugin. This would impose some rather unfortunate syntax,...
This can be implemented as a plugin, but it feels a bit clunky. There may be a better way, but this is what I came up with: ```js let dynamicPublicPathPlugin...
Cool! I think making the tag name configurable seems like a good idea (as opposed to being hardcoded to `csjs`) Could you update your PR so it can be [passed...
@arturi Yeah, I see no reason for this to be CSJS-specific. Happy to merge in a PR!
So you are suggesting appending a `.flow` file extension suffix to each file in `src` before publishing? The tricky thing is I think then paths/imports would have to be rewritten....
I see, thanks. I think the original reasoning for the current design is twofold: - Less copying (only a single extra file needs to be created) - Less ambiguity if...
Cup v4 now uses vanilla `.babelrc` for Babel configuration (rather than `.cuprc.js`). Configuration loading as of Babel v7 fixed a lot of the issues (the original reasoning for not using...
This can also be broken with yarn workspace in cases where node_modules are hoisted.
Support for https://github.com/ai/browserslist would be great. Tools such as https://github.com/babel/babel-preset-env use it.
I've created this here: https://github.com/rtsao/polypackage. It works slightly differently from the proposal, but I think it's less restrictive in terms of how you structure your source code of the package....