我有一个包含2个源文件的React项目:RMain.jsx
和RCategory.jsx
。我正在使用browserify构建项目,如下所示:
gulp.task('buildDT', function(){
browserify({
entries: ['src/app/dataTree/RMain.jsx', 'src/app/dataTree/RCategory.jsx'],
transform: [reactify],
debug: true
})
.bundle()
.pipe(source('ListApplication.js'))
.pipe(streamify(uglify({file:'ListApplication.js'})))
.pipe(gulp.dest('src/app/dataTree/'));
});
不幸的是,我收到以下错误:
events.js:85
throw er; // Unhandled 'error' event
^
Error: Cannot find module 'RCategory.jsx'
模块位于正确的位置。为什么会这样?