1.1.3 • Published 8 years ago

babel-plugin-expose v1.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

babel-plugin-expose

A babel plugin that exposes ES6 modules to global namespace.

##Usage This is a babel plugin that converts ES6 modules into global variables. To use it, just add it to your package.json and pass it as a plugin when calling babel:

babel.transform('code', {
  filename: filename,
  plugins: ['expose']
});