You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
480 B
22 lines
480 B
10 years ago
|
/**
|
||
|
* Compress CSS files.
|
||
|
*
|
||
|
* ---------------------------------------------------------------
|
||
|
*
|
||
|
* Minifies css files and places them into .tmp/public/min directory.
|
||
|
*
|
||
|
* For usage docs see:
|
||
|
* https://github.com/gruntjs/grunt-contrib-cssmin
|
||
|
*/
|
||
|
module.exports = function(grunt) {
|
||
|
|
||
|
grunt.config.set('cssmin', {
|
||
|
dist: {
|
||
|
src: ['.tmp/public/concat/production.css'],
|
||
|
dest: '.tmp/public/min/production.min.css'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
||
|
};
|