switch to sass

This commit is contained in:
Nils Schneider 2015-03-31 15:38:21 +02:00
commit 3b5895601d
8 changed files with 332 additions and 314 deletions

View file

@ -32,6 +32,16 @@ module.exports = function(grunt) {
cwd: "bower_components/ionicons/"
}
},
sass: {
dist: {
options: {
style: "compressed"
},
files: {
"build/style.css": "scss/main.scss"
}
}
},
cssmin: {
target: {
files: {
@ -59,5 +69,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-contrib-copy")
grunt.loadNpmTasks("grunt-contrib-requirejs")
grunt.loadNpmTasks("grunt-contrib-cssmin")
grunt.loadNpmTasks("grunt-contrib-sass")
}