Skip to content

Commit 828ff53

Browse files
committed
Downgrade grunt-contrib-cssmin to v0.6.x which uses clean-css v1.x
grunt-conrib-cssmin v0.7.x uses clean-css v2.x which adds "advanced" options which totally borked the Pure v0.4.0 release. **Note to self:** If I ever write a trivial Grunt plugin that wraps some dependency, tie their version releases to the same slot, e.g. bump the major version number if the dependency's major version number changes.
1 parent a99ea29 commit 828ff53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ grunt.initConfig({
115115

116116
cssmin: {
117117
options: {
118-
// report: 'gzip'
118+
noAdvanced: true
119119
},
120120

121121
files: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"bower": "~1.2.5",
1111
"grunt": "~0.4.1",
1212
"grunt-cli": "~0.1.9",
13-
"grunt-contrib-cssmin": "~0.7.0",
13+
"grunt-contrib-cssmin": "~0.6.0",
1414
"grunt-contrib-clean": "~0.5.0",
1515
"grunt-contrib-copy": "~0.5.0",
1616
"grunt-contrib-concat": "~0.3.0",

0 commit comments

Comments
 (0)