import-export
import-export copied to clipboard
Howdy, thanks for this library. Is really great. I ran into something the other day that i isolated related to the use of the apollo-link library along with import-export Gist...
previously the following was ignored, resulting in puzzling syntax errors: import foo from "foo"; import { bar } from "bar";
It will be useful to people who use .jsx format as well as .js
Support for importing modules without accessing anything out of them ``` import 'module-name' ``` or ``` import './file.js' ```
import * as variable from 'file' construct support
Hi @Macmee, I have another suggestion. Looking at the replacements the hook function makes, I see a few incompatibilities/omissions compared to how 'real' ES6 modules would behave. You've probably already...
Hi @Macmee, I saw this on /r/node and thought it seems useful. Thanks for making it! I wanted to suggest using a proper parser, rather than regex-based replacing, to rewrite...