Jason Kuhrt (2015-02-19T02:08:13.000Z)
I was prompted to bring this issue to es-discuss.

https://github.com/babel/babel/issues/826 <https://github.com/babel/babel/issues/826>

It is my confusion about why this syntax does not work:

export foo from ‘./foo'

More details are in the issue but the gist is that sometimes it is actually quite handy to export just defaults internally and then re-export thing as a “bag” of named exports. This is not currently “easy”. I assume this was discussed/considered. I’d be curious what the rationale was.

Thanks!
Jason
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20150218/9760a443/attachment.html>
d at domenic.me (2015-03-03T21:05:57.200Z)
I was prompted to bring this issue to es-discuss. https://github.com/babel/babel/issues/826

It is my confusion about why this syntax does not work:

```js
export foo from './foo'
```

More details are in the issue but the gist is that sometimes it is actually quite handy to export just defaults internally and then re-export thing as a “bag” of named exports. This is not currently “easy”. I assume this was discussed/considered. I’d be curious what the rationale was.