Skip to content

Instantly share code, notes, and snippets.

@mattjburrows
Created October 28, 2014 15:10
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 mattjburrows/6d1a1ba15c52053def4d to your computer and use it in GitHub Desktop.
Save mattjburrows/6d1a1ba15c52053def4d to your computer and use it in GitHub Desktop.
SASS grunt example
sass: {
development: {
options: {
banner: '<%= config.banner %>',
style: 'nested'
},
src: ['<%= config.sass %>dev.scss'],
dest: '<%= config.css %>screen.css'
},
production: {
options: {
banner: '<%= config.banner %>',
style: 'compressed'
},
src: ['<%= config.sass %>live.scss'],
dest: '<%= config.css %>screen.css'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment