1.3.0 • Published 8 years ago

grunt-strip-css-comments v1.3.0

Weekly downloads
114
License
MIT
Repository
github
Last release
8 years ago

grunt-strip-css-comments Build Status

Strip comments from CSS using strip-css-comments

Install

$ npm install --save-dev grunt-strip-css-comments

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
	stripCssComments: {
		dist: {
			files: {
				'dist/app.css': 'src/app.css'
			}
		}
	}
});

grunt.registerTask('default', ['stripCssComments']);

Options

See the strip-css-comments options.

License

MIT © Sindre Sorhus