使用babel转换js文件很容易:
$ babel ./src/js --out-dir ./src/js/lib
但是!这将导致以下结构:
src/
js/
foo/
bar.js
lib/
src/
js/
foo/
bar.js
my-file.js
my-file.js
我要求结构如下:
src/
js/
foo/
bar.js
lib/
foo/
bar.js
my-file.js
我该如何实现?
答案 0 :(得分:1)