Gulp project map
Generate list of file for the project (html sitemap)
Install
Install with npm
$ npm install --save-dev gulp-project-map
Example
var gulp = require('gulp');
var projectMap = require('gulp-project-map');
gulp.task('projectMap', function () {
projectMap({
path: './build'
});
});
Options
Type: Object | Null
Default:
{
path: './',
extension: '.html',
name: 'result',
title: 'project-map'
}
path
(String) Directory that needs file list createdextension
(String) File extensionname
(String) Name of file where list is createdtitle
(String) File header
License
MIT ©Maxim Gladkih