1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-16 18:44:01 +02:00

Merge pull request #18670 from twbs/unnest-autoprefixer-settings

Un-nest Autoprefixer settings in module object
This commit is contained in:
Chris Rebert
2015-12-24 22:17:22 -07:00
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:
@@ -30,4 +29,3 @@ module.exports = {
'Opera >= 12'
]
}
}