File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,18 @@ grunt.initConfig({
210210 }
211211 } ,
212212
213+ // -- Strip Media Queries Config -------------------------------------------
214+
215+ stripmq : {
216+ all : {
217+ files : {
218+ //follows the pattern 'destination': ['source']
219+ 'build/grids-responsive-old-ie.css' :
220+ [ 'build/grids-responsive.css' ]
221+ }
222+ }
223+ } ,
224+
213225 // -- CSS Selectors Config -------------------------------------------------
214226
215227 css_selectors : {
@@ -249,6 +261,7 @@ grunt.loadNpmTasks('grunt-contrib-compress');
249261grunt . loadNpmTasks ( 'grunt-contrib-watch' ) ;
250262grunt . loadNpmTasks ( 'grunt-css-selectors' ) ;
251263grunt . loadNpmTasks ( 'grunt-pure-grids' ) ;
264+ grunt . loadNpmTasks ( 'grunt-stripmq' ) ;
252265
253266// Local tasks.
254267grunt . loadTasks ( 'tasks/' ) ;
@@ -260,6 +273,7 @@ grunt.registerTask('build', [
260273 'clean:build' ,
261274 'copy:build' ,
262275 'pure_grids' ,
276+ 'stripmq' ,
263277 'concat:build' ,
264278 'clean:build_res' ,
265279 'css_selectors:base' ,
You can’t perform that action at this time.
0 commit comments