2016-06-23 14:55:04 +00:00
|
|
|
// SASS compiler
|
|
|
|
|
2016-06-23 13:25:16 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
|
|
return {
|
|
|
|
development: {
|
|
|
|
options: {
|
2016-10-15 17:19:47 +00:00
|
|
|
precision: 6,
|
|
|
|
sourceComments: false,
|
|
|
|
sourceMap: true,
|
|
|
|
outputStyle: 'expanded'
|
2016-06-23 13:25:16 +00:00
|
|
|
},
|
|
|
|
files: {
|
2016-10-15 17:19:47 +00:00
|
|
|
'dist/css/adminlte.css': 'build/scss/AdminLTE.scss'
|
2016-06-23 13:25:16 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
production: {
|
|
|
|
options: {
|
2016-10-15 17:19:47 +00:00
|
|
|
sourceComments: false,
|
|
|
|
sourceMap: true,
|
|
|
|
outputStyle: 'compressed'
|
2016-06-23 13:25:16 +00:00
|
|
|
},
|
|
|
|
files: {
|
2016-06-29 00:10:35 +00:00
|
|
|
'dist/css/adminlte.min.css': 'build/scss/AdminLTE.scss'
|
2016-06-23 13:25:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|