ddded37c by Adam Heath

wip

1 parent 3ac738d3
...@@ -201,7 +201,7 @@ module.exports = function (grunt) { ...@@ -201,7 +201,7 @@ module.exports = function (grunt) {
201 }; 201 };
202 } 202 }
203 203
204 initConfig.copy.css: { 204 initConfig.copy.css = {
205 files: [{ 205 files: [{
206 expand: true, 206 expand: true,
207 dot: true, 207 dot: true,
...@@ -224,7 +224,7 @@ module.exports = function (grunt) { ...@@ -224,7 +224,7 @@ module.exports = function (grunt) {
224 //buildList.push('autoprefixer'); // css 224 //buildList.push('autoprefixer'); // css
225 //buildList.push('concat:requirejs'); // montyPython 225 //buildList.push('concat:requirejs'); // montyPython
226 buildList.push('concat:generated'); // montyPython 226 buildList.push('concat:generated'); // montyPython
227 //buildList.push('cssmin'); // montyPython 227 buildList.push('cssmin'); // montyPython
228 //'uglify:dist'); 228 //'uglify:dist');
229 buildList.push('copy:dist'); 229 buildList.push('copy:dist');
230 //'modernizr'); 230 //'modernizr');
...@@ -236,7 +236,7 @@ module.exports = function (grunt) { ...@@ -236,7 +236,7 @@ module.exports = function (grunt) {
236 //buildList.push('uglify:requireconfig'); // montyPython 236 //buildList.push('uglify:requireconfig'); // montyPython
237 //buildList.push('rev:requireconfig'); // montyPython 237 //buildList.push('rev:requireconfig'); // montyPython
238 buildList.push('usemin:html'); // montyPython 238 buildList.push('usemin:html'); // montyPython
239 //buildList.push('usemin:css'); // montyPython 239 buildList.push('usemin:css'); // montyPython
240 buildList.push('htmlmin'); // montyPython 240 buildList.push('htmlmin'); // montyPython
241 241
242 grunt.initConfig(initConfig); 242 grunt.initConfig(initConfig);
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
20 "grunt-contrib-concat": "~0", 20 "grunt-contrib-concat": "~0",
21 "grunt-contrib-copy": "~0", 21 "grunt-contrib-copy": "~0",
22 "grunt-contrib-csslint": "~0", 22 "grunt-contrib-csslint": "~0",
23 "grunt-contrib-cssmin": "~0.12.3",
23 "grunt-contrib-jshint": "~0", 24 "grunt-contrib-jshint": "~0",
24 "grunt-contrib-htmlmin": "~0", 25 "grunt-contrib-htmlmin": "~0",
25 "grunt-usemin": "~2", 26 "grunt-usemin": "~2",
......