1.1.1 • Published 10 years ago
gulp-project-map v1.1.1
Gulp project map
Generate list of file for the project (html sitemap)
Install
Install with npm
$ npm install --save-dev gulp-project-mapExample
var gulp = require('gulp');
var projectMap = require('gulp-project-map');
gulp.task('projectMap', function () {
projectMap({
path: './build'
});
});Options
Type: Object | NullDefault:
{
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