babel / babel-brunch

Brunch plugin for Babel
ISC License
68 stars 38 forks source link

How to use es6 modules ? #9

Closed spyl94 closed 9 years ago

spyl94 commented 9 years ago

Hello,

I'm trying to build a small es6 react demo with babel-brunch. The build using brunch works fine, but the code inside app.js doesn't seem to be executed...

Do I need to add something to use es6 modules ? Thanks.

spyl94 commented 9 years ago

Solved the problem by adding :

  onCompile: function() {
    require('fs').appendFile('public/js/app.js', '\n\nrequire(\'app\');');
  }