请问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中的其他文件依然翻译。
谢谢!!!
PHPz2017-05-16 13:40:31
我有个疑问,你怎么不看看 babel --help
Option | Default | Description |
---|---|---|
-i, --ignore [regex] |
node_modules |
Ignore all files that match this regex when using the require hook |
babel src -s -D -d dist --ignore src/app
迷茫2017-05-16 13:40:31
可以使用--ignore
或者--copy-file
参数:
babel src -s -d dist --ignore src/app/*.js
--copy-file
没具体用过,你可以参考下
How to use the CLI tools