node.js - babel指令如何跳过对某些文件的翻译?
仅有的幸福
仅有的幸福 2017-05-16 13:38:31
0
2
806

请问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中的其他文件依然翻译。
谢谢!!!

仅有的幸福
仅有的幸福

全部回复(2)
PHPzhong

我有个疑问,你怎么不看看 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
迷茫

可以使用--ignore或者--copy-file参数:

babel src -s -d dist --ignore src/app/*.js

--copy-file没具体用过,你可以参考下
How to use the CLI tools

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板