From 5ba76d12701da60c20603ac9803d52959ddc7076 Mon Sep 17 00:00:00 2001
From: Arno Roldao Junior <arno@advg.com.br>
Date: Thu, 23 Jun 2016 10:25:16 -0300
Subject: [PATCH] Separate: task 'SASS' and create module for
 'load-config-grunt'

---
 grunt-tasks/sass.js | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 grunt-tasks/sass.js

diff --git a/grunt-tasks/sass.js b/grunt-tasks/sass.js
new file mode 100644
index 000000000..3aced1e15
--- /dev/null
+++ b/grunt-tasks/sass.js
@@ -0,0 +1,22 @@
+'use strict';
+
+module.exports = function (grunt) {
+  return {
+      development: {
+        options: {
+          style: 'expanded'
+        },
+        files: {
+          'dist/tmp/AdminLTE.css': 'build/scss/AdminLTE.scss'
+        }
+      },
+      production: {
+        options: {
+          style: 'compressed'
+        },
+        files: {
+          'dist/tmp/AdminLTE.min.css': 'build/scss/AdminLTE.scss'
+        }
+      }
+    };
+};