Skip to content

Instantly share code, notes, and snippets.

@MervinPraison
Created June 23, 2017 15:07
Show Gist options
  • Select an option

  • Save MervinPraison/d6abd15a4e01cd7da6df7f46aa77e39b to your computer and use it in GitHub Desktop.

Select an option

Save MervinPraison/d6abd15a4e01cd7da6df7f46aa77e39b to your computer and use it in GitHub Desktop.
Grunt Minify CSS
module.exports = function(grunt) {
grunt.initConfig({
cssmin: {
options: {
mergeIntoShorthands: false,
roundingPrecision: -1
},
target: {
files: {
'output.css': ['foo.css', 'bar.css']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('default', ["cssmin"]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment