0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

Un-nest Autoprefixer settings in module object

[skip sauce]
[skip validator]
This commit is contained in:
Chris Rebert 2015-12-24 21:32:52 -07:00
parent c9d86ff3a3
commit b0ab6bbf05
2 changed files with 30 additions and 32 deletions

View File

@ -22,7 +22,7 @@ module.exports = function (grunt) {
var npmShrinkwrap = require('npm-shrinkwrap');
var mq4HoverShim = require('mq4-hover-shim');
var autoprefixerSettings = require('./grunt/autoprefixer-settings.js');
var autoprefixer = require('autoprefixer')(autoprefixerSettings.settings);
var autoprefixer = require('autoprefixer')(autoprefixerSettings);
var generateCommonJSModule = require('./grunt/bs-commonjs-generator.js');
var configBridge = grunt.file.readJSON('./grunt/configBridge.json', { encoding: 'utf8' });

View File

@ -1,5 +1,4 @@
module.exports = {
settings: {
browsers: [
//
// Official browser support policy:
@ -29,5 +28,4 @@ module.exports = {
'Android >= 4',
'Opera >= 12'
]
}
}