Closed rafaelcneves closed 8 years ago
Is there a way to ignore some files?
I have a code similar to this:
var templateCache = require('gulp-angular-templatecache'); gulp.task('default', function () { return gulp.src('templates/**/*.html') .pipe(templateCache()) .pipe(gulp.dest('public')); });
You can exclude files with gulp using the !-character...
gulp.src(['js/**/*.js', '!js/**/*.min.js'])
Is there a way to ignore some files?
I have a code similar to this: