1.0.0 • Published 6 years ago

gulp-firstfiles v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

gulp-firstfiles

Alternative to gulp-sort. Declare an array of files to appear in first place.

Install

$ npm install gulp-firstfiles --save-dev

Usage

var firstfiles = require('gulp-firstfiles');
var concat=require('gulp-concat');

gulp.src('src/js/*.js')
    .pipe(firstfiles(['src/js/first.js','src/js/second.js']))
    .pipe(concat('all.js'))
    .pipe(gulp.dest('./build/js'));

This function is expected to return back a sorted list of files.