3.0.0 • Published 6 years ago
grunt-cssnano v3.0.0
grunt-cssnano 
Minify CSS using
cssnano
Issues with the output should be reported on the cssnano issue tracker.
Install
$ npm install --save-dev grunt-cssnanoUsage
require('load-grunt-tasks')(grunt);
grunt.initConfig({
	cssnano: {
		options: {
			sourcemap: true
		},
		dist: {
			files: {
				'dist/app.css': 'src/app.css'
			}
		}
	}
});
grunt.registerTask('default', ['cssnano']);Options
See the cssnano options.