Build unminified manifest.css from sources

This commit is contained in:
lilia 2014-11-07 00:32:32 -08:00
parent 349e7e18f6
commit cd888f66ef
4 changed files with 287 additions and 4 deletions

View file

@ -35,10 +35,19 @@ module.exports = function(grunt) {
],
dest: 'test/test.js',
}
},
sass: {
stylesheets: {
files: {
'stylesheets/manifest.css': 'stylesheets/manifest.scss'
}
}
}
});
grunt.loadNpmTasks('grunt-preen');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ['preen', 'concat']);
grunt.registerTask('default', ['preen', 'concat', 'sass']);
};