Skip to content

Commit 126455e

Browse files
committed
add stripmq grunt task
1 parent 36ed083 commit 126455e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Gruntfile.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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');
249261
grunt.loadNpmTasks('grunt-contrib-watch');
250262
grunt.loadNpmTasks('grunt-css-selectors');
251263
grunt.loadNpmTasks('grunt-pure-grids');
264+
grunt.loadNpmTasks('grunt-stripmq');
252265

253266
// Local tasks.
254267
grunt.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',

0 commit comments

Comments
 (0)