Package Exports
- gulp-multi-dest
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-multi-dest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-multi-dest 
Just like gulp dest but supports multiple output paths
Install
npm install gulp-multi-dest --save-dev
Usage
var gulp = require('gulp');
var multiDest = require('gulp-multi-dest');
var destOptions = {
mode: 0755
};
gulp.task('copy', function() {
return gulp.src('./js/*.js')
.pipe(multiDest(['./dist1/js', './dist2/js'], destOptions));
});
Test
To start the tests run npm install
and then npm run test
.