我有一个完整的项目结构(在节点中),我的大部分代码都位于src/
文件夹中,而一些helper/
文件夹中的辅助功能都位于项目的根目录中,我不得不使用< / p>
"babel src -d public/src && babel helper -d public/helper && babel index -d public/index -w"
,以便在babel完成转录时保留导入和导出文件夹的结构。有更简单的方法吗?
我已经阅读了有关babel的知识,并获得了一些知识,但是我看到的所有教程都没有涉及这种情况。
以这种方式保留了文件夹项目的结构,尽管在节点上一切正常。
答案 0 :(得分:1)
您可以这样做:
babel public/folder1 public/folder2 public/folder3 ... -d -w
或使用通配符:
babel public/** -d -w