-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathGruntfile.js
More file actions
21 lines (18 loc) · 475 Bytes
/
Copy pathGruntfile.js
File metadata and controls
21 lines (18 loc) · 475 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* The Gruntfile in this project is not responsible for the code build or
* linting, and instead handles all tasks related to documentation generation
* and output.
*/
'use strict';
module.exports = function( grunt ) {
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
} );
// Individual tasks are defined within build/grunt
grunt.loadTasks( 'build/grunt' );
grunt.registerTask( 'docs', [
'clean',
'generate_readme_docs',
'zip',
] );
};