browserify怎么生成sourcemap
刚开始使用gulp-babel
编译es6
,很多问题不清楚:
gulp.task('browserify', function () {
browserify({
entries: './build/view/index.js',
debug: true
})
.transform(babelify, {
presets: ['es2015', 'stage-0', 'stage-1'],
plugins: ['transform-decorators-legacy']
}).bundle()
.pipe(vinylSource('index.js'))
.pipe(gulp.dest('./build'));
});
请问怎么配置生成sourcemap
?
另外,现在gulp-browserify
是不是不推荐使用,而是都用browserify
了?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看我写的 https://github.com/hjzheng/es6-practice/blob/master/gulpfile.js
配置 debug为true 就会启用 sourcemap,但是好像是inline-sourcemap
如果要使用 生成独立的sourcemap文件,请使用 exorcist
gulp-browserify就是用gulp插件方式包了一下browserify,直接用browserify就行啦!
另外关于 gulp 其他资料可以看一看这个 https://github.com/Platform-CUF/use-gulp
但是我还是建议使用 webpack 去玩ES6,下面链接中有两个ES6的练习环境,一个就是webpack
https://github.com/ShuyunXIANFESchool/newcomer#es6