1.1.1 • Published 8 years ago

gulp-project-map v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Gulp project map

NPM version devDependency Status

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 | NullDefault:

{
  path: './',
  extension: '.html',
  name: 'result',
  title: 'project-map'
}
  • path (String) Directory that needs file list created
  • extension (String) File extension
  • name (String) Name of file where list is created
  • title (String) File header

License

MIT ©Maxim Gladkih

1.1.1

8 years ago

1.1.0

8 years ago

1.0.4

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago