From acd331b6dc39efcd2a2dfe10b93a1ca699dc4d03 Mon Sep 17 00:00:00 2001 From: Arno Roldao Junior Date: Thu, 23 Jun 2016 10:28:15 -0300 Subject: [PATCH] Separate: task 'INCLUDES' and create module for 'load-config-grunt' --- grunt-tasks/includes.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 grunt-tasks/includes.js 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' + } + } + }; +};