Properly setup autoprefixer #14800
This commit is contained in:
parent
3d5cafe840
commit
80652660f9
|
@ -286,11 +286,11 @@ module.exports = function( grunt ) {
|
|||
}
|
||||
},
|
||||
|
||||
// Autoprefixer
|
||||
// Autoprefixer.
|
||||
postcss: {
|
||||
options: {
|
||||
processors: [
|
||||
require('autoprefixer')({
|
||||
require( 'autoprefixer' )({
|
||||
browsers: [
|
||||
'> 0.1%',
|
||||
'ie 8',
|
||||
|
@ -339,9 +339,9 @@ module.exports = function( grunt ) {
|
|||
grunt.registerTask( 'css', [
|
||||
'sass',
|
||||
'rtlcss',
|
||||
'postcss',
|
||||
'cssmin',
|
||||
'concat',
|
||||
'postcss'
|
||||
'concat'
|
||||
]);
|
||||
|
||||
grunt.registerTask( 'docs', [
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
37
package.json
37
package.json
|
@ -15,24 +15,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^6.7.7",
|
||||
"grunt": "~1.0.1",
|
||||
"grunt-autoprefixer": "^3.0.4",
|
||||
"grunt-checktextdomain": "~1.0.0",
|
||||
"grunt-contrib-clean": "~1.0.0",
|
||||
"grunt-contrib-cssmin": "~1.0.0",
|
||||
"grunt-contrib-jshint": "~1.1.0",
|
||||
"grunt-contrib-sass": "~1.0.0",
|
||||
"grunt-contrib-uglify": "~2.0.0",
|
||||
"grunt-contrib-watch": "~1.0.0",
|
||||
"grunt-phpcs": "^0.4.0",
|
||||
"grunt-shell": "~2.1.0",
|
||||
"grunt-stylelint": "^0.6.0",
|
||||
"grunt-wp-i18n": "~0.5.4",
|
||||
"grunt-postcss": "^0.8.0",
|
||||
"grunt-rtlcss": "2.0.1",
|
||||
"grunt-contrib-concat": "1.0.1",
|
||||
"node-bourbon": "~4.2.3",
|
||||
"config": "^1.24.0",
|
||||
"babel": "^6.5.2",
|
||||
"babel-cli": "^6.14.0",
|
||||
"babel-eslint": "^7.0.0",
|
||||
|
@ -41,10 +23,27 @@
|
|||
"babel-preset-stage-2": "^6.13.0",
|
||||
"chai": "^3.5.0",
|
||||
"chai-as-promised": "^6.0.0",
|
||||
"chromedriver": "^2.25.0",
|
||||
"config": "^1.24.0",
|
||||
"cross-env": "^3.0.0",
|
||||
"grunt": "~1.0.1",
|
||||
"grunt-checktextdomain": "~1.0.0",
|
||||
"grunt-contrib-clean": "~1.0.0",
|
||||
"grunt-contrib-concat": "1.0.1",
|
||||
"grunt-contrib-cssmin": "~1.0.0",
|
||||
"grunt-contrib-jshint": "~1.1.0",
|
||||
"grunt-contrib-sass": "~1.0.0",
|
||||
"grunt-contrib-uglify": "~2.0.0",
|
||||
"grunt-contrib-watch": "~1.0.0",
|
||||
"grunt-phpcs": "^0.4.0",
|
||||
"grunt-postcss": "^0.8.0",
|
||||
"grunt-rtlcss": "2.0.1",
|
||||
"grunt-shell": "~2.1.0",
|
||||
"grunt-stylelint": "^0.6.0",
|
||||
"grunt-wp-i18n": "~0.5.4",
|
||||
"istanbul": "^1.0.0-alpha",
|
||||
"mocha": "^3.0.2",
|
||||
"chromedriver": "^2.25.0",
|
||||
"node-bourbon": "~4.2.3",
|
||||
"wc-e2e-page-objects": "0.2.2"
|
||||
},
|
||||
"engines": {
|
||||
|
|
Loading…
Reference in New Issue