Gulp babel es2015 transform very slow(Gulp babel es2015 转换很慢)
问题描述
我正在尝试使用 gulp 在我的 JavaScript 上运行 babel-preset-es2015,但即使在一行代码上也需要很长时间.我最初尝试使用大约 700 loc 的脚本包,然后使用 1 行的虚拟脚本.第一种情况大约需要 9s - 1 行 i 需要 8.38s.
I am trying to run the babel-preset-es2015 on my JavaScript using gulp, but it takes forever even on one line of code. I originally tried with my script bundle that is about 700 loc, and then with a dummy script that is 1 line. The first case takes about 9s - with 1 line i takes 8.38s.
这是我的确切设置:
package.json:
package.json:
{
"devDependencies": {
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"babel": "^6.3.26",
"babel-preset-es2015": "^6.3.13"
},
"babel": {
"presets": [ "es2015" ]
}
}
gulpfile.js:
gulpfile.js:
gulp.task('js', function () {
return gulp.src('dummyscript.js')
.pipe(concat('site.bundle.js'))
.pipe(babel())
.pipe(gulp.dest(paths.dest.scripts));
});
dummy.js:
console.log('dummy script');
我正在运行 node v4.2.4 和 npm v2.14.12.
I'm running node v4.2.4 and npm v2.14.12.
gulp-react 和 gulp-uglify 等其他操作加起来大约需要 180 毫秒.
Other operations like gulp-react and gulp-uglify all take about 180ms combined.
发生了什么事?
推荐答案
Babel 6 有很多高度嵌套的子依赖.如果你有一个非扁平的依赖树,这可能会很慢.在您的情况下,您使用的是 npm 2,您将需要 npm dedupe
或安装 npm@3
并重新安装,以便您的依赖项被扁平化.
Babel 6 has many highly-nested subdependencies. This can be quite slow if you have a non-flattened dependency tree. In your case, you are using npm 2, you will need to either npm dedupe
or install npm@3
and reinstall so that your dependencies are flattened.
这篇关于Gulp babel es2015 转换很慢的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Gulp babel es2015 转换很慢


- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- addEventListener 在 IE 11 中不起作用 2022-01-01