John-David Dalton
John-David Dalton
Possibly related to #561.
Latest gpe doesn't parse `@import url(//fonts.googleapis.com/css?family=Open+Sans:400italic,400,600)` as sass or scss.
Soo cool!
Ran into this issue too trying to make an adapter for estree AST.
@kdy1 > I want to remove `parse` and `print` with v2 of swc. > I'm going to provide a rust-based plugin API instead. Ah cool. Will there still be a...
@kdy1 I've noticed some confusion around this from another user. Folks use the AST from parsers, in formats like babylon and estree, to perform source transformations. The AST usually has...
Are we talking past each other? Maybe an example would help. In [ast-explorer](https://astexplorer.net/#/gist/bf0d25aacccd3c61ecebdcc4104fc034/f3328d63fdb19a161259111648673fe911923a3a) using acorn with an example of `export * as ns from 'a';` the `ExportAllDeclaration` node has a...
> In other words, AST will not be exposed to js world. If it could still be exposed to JS by a rust plugin or some such way that would...
My take is: Once you require a build step for interop _(publishing 2 versions of your code)_ you might as well just ship the 1 _(transpiled to CJS)_. It's kind...