Skip to content

Instantly share code, notes, and snippets.

@brunogarcia
Created October 14, 2015 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunogarcia/3e6f1e6c797c2e882cf8 to your computer and use it in GitHub Desktop.
Save brunogarcia/3e6f1e6c797c2e882cf8 to your computer and use it in GitHub Desktop.
/*
Sass
Compile Sass to CSS
https://www.npmjs.com/package/grunt-contrib-sass
*/
'sass': {
dist: {
options: {
style: 'compressed'
},
files: {
'<%= config.dist %>/assets/css/main.css': '<%= config.dev %>/assets/scss/main.scss'
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment