mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
369 B
18 lines
369 B
9 years ago
|
// Build the documentation files
|
||
9 years ago
|
'use strict';
|
||
|
|
||
|
module.exports = function (grunt) {
|
||
|
return {
|
||
|
build: {
|
||
|
src: ['*.html'], // Source files
|
||
|
dest: 'documentation/', // Destination directory
|
||
|
flatten: true,
|
||
|
cwd: 'documentation/build',
|
||
|
options: {
|
||
|
silent: true,
|
||
|
includePath: 'documentation/build/include'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|