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' + } + } + }; +};