added jade lite task

This commit is contained in:
cubedro 2015-07-14 22:55:20 +03:00
parent bd0fe634a1
commit dc808cc316
1 changed files with 8 additions and 3 deletions

View File

@ -49,9 +49,14 @@ module.exports = function(grunt) {
pretty: true
}
},
files: {
'dist/index.html': 'src/views/index.jade'
}
files: [
{
'dist/index.html': 'src/views/index.jade'
},
{
'dist/index-lite.html': 'src/views/index-lite.jade'
}
]
}
},
copy: {