請問babel指令如何跳過某些檔案的翻譯?
現在使用的是:
babel src -s -D -d dist
.babelrc
{
"presets": [
"es2015",
"stage-2"
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}]
]
}
會將src中的檔案都翻譯並儲存到dist
現在需要將src/app的檔案直接儲存到dist不進行翻譯,而src中的其他檔案依然翻譯。
謝謝! ! !
我有個疑問,你怎麼不看看
babel --help
-i, --ignore [regex]
node_modules
可以使用
--ignore
或者--copy-file
參數:--copy-file
沒具體用過,可以參考下How to use the CLI tools