fixed less grunt watch

This commit is contained in:
Keivan Beigi 2013-08-01 18:00:30 -07:00
parent 1f7d57c2c2
commit e3916d5fc8
1 changed files with 14 additions and 18 deletions

View File

@ -60,23 +60,19 @@ module.exports = function (grunt) {
dest: destContent + 'bootstrap.css'
},
general : {
files: [
{
expand: true,
src : [
'UI/Content/base.less',
'UI/Content/overrides.less',
'UI/Series/series.less',
'UI/AddSeries/addSeries.less',
'UI/Calendar/calendar.less',
'UI/Cells/cells.less',
'UI/Logs/logs.less',
'UI/Settings/settings.less',
],
dest : outputRoot,
ext : '.css'
}
]
expand :true,
src : [
'UI/Content/base.less',
'UI/Content/overrides.less',
'UI/Series/series.less',
'UI/AddSeries/addSeries.less',
'UI/Calendar/calendar.less',
'UI/Cells/cells.less',
'UI/Logs/logs.less',
'UI/Settings/settings.less',
],
dest : outputRoot,
ext: '.css'
}
},
@ -143,7 +139,7 @@ module.exports = function (grunt) {
tasks: ['less:bootstrap','less:general']
},
generalLess: {
files: '<%= less.general.files[0].src %>',
files: ['UI/**/*.less', '!**/Bootstrap/**', '!**/FontAwesome/**'],
tasks: ['less:general']
},
handlebars : {