1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

fixed cssmin that wasn't working in the gruntfile

This commit is contained in:
Stephen Bégay
2015-03-27 15:17:00 -04:00
parent 100352f548
commit 74da5a3e34

View File

@@ -114,9 +114,13 @@ module.exports = function(grunt) {
// cssmin: Compress CSS files
cssmin: {
combine: {
files: {
'assets/styles/dist/': ['assets/scripts/dist/*.css']
}
files: [{
expand: true,
cwd: 'assets/styles/dist/',
src: '*.css',
dest: 'assets/styles/dist/'
}]
}
},