Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created September 20, 2013 09:29
Show Gist options
  • Save thekarel/6635172 to your computer and use it in GitHub Desktop.
Save thekarel/6635172 to your computer and use it in GitHub Desktop.
cssmin Grunt task to compress all non-minified css in a directory
cssmin: {
minify: {
expand: true,
cwd: 'css/lib/',
src: ['*.css', '!*.min.css'],
dest: 'css/lib/',
ext: '.min.css'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment