diff --git a/grunt-tasks/includes.js b/grunt-tasks/includes.js new file mode 100644 index 000000000..a881b7d0a --- /dev/null +++ b/grunt-tasks/includes.js @@ -0,0 +1,16 @@ +'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' + } + } + }; +};