I would like to generate source files for jsx files that are transferred using babelify and browser. It looks like some source files are generated as a base64 encoded comment at the bottom of my output file, but stacktraces do not respect them.
My grunt task is as follows:
browserify: { options: { browserifyOptions: { debug: true }, debug: true, transform: ['babelify'] }, app: { src: 'src/app.jsx', dest: 'dist/app.js' } },
browserify grunt-browserify
Jim geurts
source share