mirror of https://github.com/ColorlibHQ/AdminLTE
Separate: task 'SASS' and create module for 'load-config-grunt'
parent
561ea68955
commit
5ba76d1270
|
@ -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'
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue