mirror of https://github.com/ColorlibHQ/AdminLTE
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
// Build the documentation files
|
|
'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'
|
|
}
|
|
}
|
|
};
|
|
};
|