Commit d22dee47 authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

css minify stub

parent 391cae85
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
cssmin: {
task: {
src: ['./service/src/main/resources/assets/statics/css/*'],
dest: './front_build/assets/statics/css/main.css.min'
},
options: {
'banner': null,
'keepSpecialComments': '*',
'report': 'min'
}
}
});
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('default', ['cssmin']);
};
\ No newline at end of file
{
"name": "CTF",
"title": "CTF",
"version": "0.0.1",
"devDependencies": {
"grunt": "0.4.5",
"grunt-contrib-cssmin": "*"
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment