revivek / oy

Render HTML emails on the server with React.
MIT License
834 stars 47 forks source link

Remove the `default` namespace for ES5 module exports #78

Closed dancrumb closed 5 years ago

dancrumb commented 7 years ago

Right now, if you try to use this in an ES5 environment, you have to use:

const Oy = require('oy-vey').default;

in order to access renderTemplate. This change fixes that.