How to use the src function from grunt

Find comprehensive JavaScript grunt.src code examples handpicked from public code repositorys.

221
222
223
224
225
226
227
228
229
230
```js
var gulp = require('gulp');
var remapIstanbul = require('remap-istanbul/lib/gulpRemapIstanbul');

gulp.task('remap-istanbul', function () {
        return gulp.src('coverage-final.json')
                .pipe(remapIstanbul())
                .pipe(gulp.dest('coverage-remapped.json'));
});
```
fork icon81
star icon0
watch icon1

+ 3 other calls in file