Outputs a list of pages links in an HTML page
There is also a version for Broccoli
$ npm install gulp-fileindex
var fileindex = require('gulp-fileindex');
gulp.task('fileindex', function() {
return gulp.src('pages/*.html')
.pipe(fileindex())
.pipe(gulp.dest('./'));
});
Type: String
Optional
Default index.html
Filename for the listing page where the links will be written.
Type: Boolean
Optional
Default false
Wether or not to show only the filenames in the HTML listing page.
Type: Boolean
Optional
Default true
Wether or not to show the pages' file extension
$ npm run dev
# Only run the tests
$ npm run test
MIT