I have below the structure repository:
src
-common
- asd.ts
- filter.ts
-checking
-hi.json
-third-party
-src
-common
-hello.ts
-two.ts
-three.ts
here, i want move files from third-party/src/common to src/common but i have to exlcude three.ts file.
I have treid like below bur it moves all files:
gulp.task('common-update', function (done) {
shelljs.cp('-rf', './third-party/angularSB/src/app/common/*', './src/app/common/');
done();
});