Grunt-Browserify extensions flag not working
问题 I am trying to use Grunt-browserify and reactify to parse and bundle React components written in jsx. I want to use the extension flag so that I don't have have to specify the file extension name of my modules, but I have been unable to get this to work. Here is some test code: A Gruntfile: 'use strict'; module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), browserify: { dev: { src: 'src/app.jsx', dest: 'dest/app.js', options: { debug: true, transform