Skip to content

Commit

Permalink
Stop to minify CSS
Browse files Browse the repository at this point in the history
Minified CSS is unreadable.
  • Loading branch information
kou committed Mar 28, 2015
1 parent d46e84b commit a12cf33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
16 changes: 1 addition & 15 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ module.exports = function (grunt) {
html: {
steps: {
js: ['concat'],
css: ['cssmin']
css: ['concat']
},
post: {}
}
Expand All @@ -258,19 +258,6 @@ module.exports = function (grunt) {
}
},

// The following *-min tasks will produce minified files in the dist folder
// By default, your `index.html`'s <!-- Usemin block --> will take care of
// minification. These next options are pre-configured if you do not wish
// to use the Usemin blocks.
// cssmin: {
// dist: {
// files: {
// '<%= yeoman.dist %>/styles/main.css': [
// '.tmp/styles/{,*/}*.css'
// ]
// }
// }
// },
// concat: {
// dist: {}
// },
Expand Down Expand Up @@ -455,7 +442,6 @@ module.exports = function (grunt) {
'concat',
'ngAnnotate',
'copy:dist',
'cssmin',
'filerev',
'usemin'
]);
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-connect": "^0.7.1",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-cssmin": "^0.9.0",
"grunt-contrib-imagemin": "^0.8.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
Expand Down

0 comments on commit a12cf33

Please sign in to comment.