@travissanderson-wf requested support to copy to multiple destinations: ``` js gulp.task('dartLib', wGulp.getDeps('dartLib'), wGulp.copy({ changed: true, src: ['src/wTransport.dart', 'dist/wTransportGlobal.bundle.js'], dest: ['lib/', 'examples/dart/web/'] })); ``` First thoughts on implementation: I think gulp recently released support for this with a syntax like so: ``` js gulp.src('file.ext') .dest('locationA') .dest('locationB') ``` If that is indeed the case, the copy subtask should be able to apply .dest() chains in a loop.
@travissanderson-wf requested support to copy to multiple destinations:
First thoughts on implementation:
I think gulp recently released support for this with a syntax like so:
If that is indeed the case, the copy subtask should be able to apply .dest() chains in a loop.