我在结构存储库下面:
src
-common
- asd.ts
- filter.ts
-checking
-hi.json
-third-party
-src
-common
-hello.ts
-two.ts
-three.ts
在这里,我想将文件从第三方/src/common移动到src/common,但我必须排除三个.ts文件。
我有像下面这样的 bur 它移动所有文件:
gulp.task('common-update', function (done) {
shelljs.cp('-rf', './third-party/angularSB/src/app/common/*', './src/app/common/');
done();
});