mirror of https://github.com/ColorlibHQ/AdminLTE
23 lines
430 B
JavaScript
23 lines
430 B
JavaScript
'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'
|
|
}
|
|
}
|
|
};
|
|
};
|