Skip to:
Content

BuddyPress.org

Ticket #8572: 8572.patch

File 8572.patch, 3.2 KB (added by imath, 3 years ago)
  • .stylelintrc

    diff --git .stylelintrc .stylelintrc
    index df8a6763d..47db18561 100644
     
    11{
    2   "extends": "stylelint-config-wordpress/scss",
     2  "extends": "@wordpress/stylelint-config/scss",
    33  "rules": {
    44    "no-descending-specificity": null,
    55    "selector-pseudo-element-colon-notation": null,
  • Gruntfile.js

    diff --git Gruntfile.js Gruntfile.js
    index 274d48853..700921844 100644
    module.exports = function( grunt ) { 
    5454                        '!bp-members/css/blocks/member-avatar-blocks.css'
    5555                ],
    5656
    57                 autoprefixer = require('autoprefixer');
     57                sass = require('node-sass');
    5858
    5959        require( 'matchdep' ).filterDev( ['grunt-*', '!grunt-legacy-util'] ).forEach( grunt.loadNpmTasks );
    6060        grunt.util = require( 'grunt-legacy-util' );
    module.exports = function( grunt ) { 
    113113                },
    114114                sass: {
    115115                        options: {
     116                                implementation: sass,
    116117                                outputStyle: 'expanded',
    117118                                indentType: 'tab',
    118119                                indentWidth: '1'
    module.exports = function( grunt ) { 
    356357                        options: {
    357358                                map: false,
    358359                                processors: [
    359                                         autoprefixer({
    360                                                 browsers: ['extends @wordpress/browserslist-config'],
     360                                        require('autoprefixer')( {
    361361                                                cascade: false
    362                                         })
     362                                        } )
    363363                                ],
    364364                                failOnError: false
    365365                        },
  • package.json

    diff --git package.json package.json
    index 88521d035..1623fbf41 100644
     
    55        },
    66        "description": "BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!",
    77        "devDependencies": {
    8                 "@babel/core": "~7.13.14",
    9                 "@wordpress/babel-preset-default": "~5.1.0",
    10                 "@wordpress/browserslist-config": "~3.0.1",
    11                 "@wordpress/env": "^4.0.0",
    12                 "autoprefixer": "~8.5.2",
    13                 "grunt": "~1.3.0",
     8                "@babel/core": "~7.15.5",
     9                "@wordpress/babel-preset-default": "~6.3.2",
     10                "@wordpress/browserslist-config": "~4.1.0",
     11                "@wordpress/env": "^4.1.1",
     12                "@wordpress/stylelint-config": "~19.1.0",
     13                "autoprefixer": "^9.8.6",
     14                "grunt": "~1.4.1",
    1415                "grunt-check-dependencies": "~1.0.0",
    1516                "grunt-checktextdomain": "~1.0.1",
    1617                "grunt-contrib-clean": "~2.0.0",
    1718                "grunt-contrib-copy": "~1.0.0",
    18                 "grunt-contrib-cssmin": "^3.0.0",
     19                "grunt-contrib-cssmin": "^4.0.0",
    1920                "grunt-contrib-imagemin": "~4.0.0",
    20                 "grunt-contrib-jshint": "^2.1.0",
     21                "grunt-contrib-jshint": "^3.0.0",
    2122                "grunt-contrib-uglify": "~5.0.1",
    2223                "grunt-contrib-watch": "~1.1.0",
    2324                "grunt-exec": "^3.0.0",
    2425                "grunt-jsvalidate": "~0.2.2",
    25                 "grunt-legacy-util": "^2.0.0",
     26                "grunt-legacy-util": "^2.0.1",
    2627                "grunt-patch-wordpress": "~3.0.1",
    2728                "grunt-postcss": "~0.9.0",
    2829                "grunt-rtlcss": "~2.0.2",
    29                 "grunt-sass": "~2.0.0",
    30                 "grunt-stylelint": "~0.15.0",
     30                "grunt-sass": "~3.1.0",
     31                "grunt-stylelint": "~0.16.0",
    3132                "matchdep": "~2.0.0",
     33                "node-sass": "~6.0.1",
    3234                "parcel-bundler": "~1.12.5",
    3335                "phplint": "~2.0.5",
    34                 "postcss-scss": "~2.0.0",
    35                 "stylelint": "~13.13.1",
    36                 "stylelint-config-wordpress": "~17.0.0"
     36                "postcss": "~8.3.6",
     37                "postcss-scss": "~4.0.0",
     38                "stylelint": "~13.13.1"
    3739        },
    3840        "engines": {
    3941                "node": ">=14.15.0",
     
    7779        "version": "10.0.0-alpha",
    7880        "browserslist": [
    7981                "extends @wordpress/browserslist-config"
    80         ],
    81         "dependencies": {
    82                 "postcss": "~7.0.35"
    83         }
     82        ]
    8483}