From f3e425f2c17cea3cce740f2be832232d37583f42 Mon Sep 17 00:00:00 2001 From: Arno Roldao Junior Date: Thu, 23 Jun 2016 10:28:57 -0300 Subject: [PATCH] Separate: task 'CLEAN' and create module for 'load-config-grunt' --- grunt-tasks/clean.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 grunt-tasks/clean.js diff --git a/grunt-tasks/clean.js b/grunt-tasks/clean.js new file mode 100644 index 000000000..63d48ac5e --- /dev/null +++ b/grunt-tasks/clean.js @@ -0,0 +1,7 @@ +'use strict'; + +module.exports = function (grunt) { + return { + build: ["build/img/*"] + }; +};