gpt4 book ai didi

npm - Babel CLI 非常慢

转载 作者:行者123 更新时间:2023-12-02 22:38:01 24 4
gpt4 key购买 nike

所以我按照安装here ,但是 babel 需要很长的时间来编译,即使是小文件:

app.js

let app = 1;

.babelrc

{ "presets": ["es2015"] }

package.json

"scripts": {
"build": "babel app.js -o dist/app.js"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13"
}

然后 npm run build 将需要大约 30 秒的时间来编译。

我正在使用npm@3.3.12

最佳答案

您可能也在编译 node_modulesbower_components

您可以尝试在项目 .babelrc 中添加 ignore 属性,如下所示:

{
...
"ignore": /(node_modules|bower_components)/
...
}

希望这能解决您的问题

关于npm - Babel CLI 非常慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35244962/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com