我正在使用create-react-app创建一个库。我的构建脚本在将所有内容从src/lib
复制到dist
时什么也不做。我安装了最新的@babel/cli
。
"scripts": {
"start": "react-scripts start",
"build": "SET NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
它只是说Done in 0.14s
,实际上并没有复制任何内容。
此外,我应该使用汇总吗?以及如何为性能和兼容性配置Babel(例如:ES5 => ES6)?
答案 0 :(得分:0)
Babel是create-react-app的内置配置的一部分,因此您无需安装babel-cli或直接使用babel。 build
脚本应该只是{ "build": "react-scripts build" }