Make WordPress Core


Ignore:
Timestamp:
10/08/2019 07:05:53 PM (5 years ago)
Author:
desrosj
Message:

Bundled Themes: Update Twenty Twenty.

This brings trunk's version of Twenty Twenty in-sync with GitHub.

For a complete list of changes since [46357], see https://github.com/WordPress/twentytwenty/compare/7157870...7246fd6.

Props anlino, ianbelanger, poena, williampatton, nielslange, acosmin, netweb, joyusly, luminuu, itowhid06, cbravobernal, intimez, glauberglauber, ocean90, amolv, briceduclos, aristath, mukesh27, garrett-eclipse, audrasjb, afercia, dianeco, utsav72640, mahesh901122, tobifjellner.
See #48110.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwenty/package.json

    r46357 r46445  
    1919    },
    2020    "devDependencies": {
     21        "@wordpress/browserslist-config": "^2.6.0",
    2122        "@wordpress/scripts": "^5.0.0",
     23        "autoprefixer": "^9.6.1",
    2224        "concurrently": "^4.1.2",
    23         "rtlcss": "^2.4.0"
     25        "postcss-cli": "^6.1.3",
     26        "rtlcss": "^2.4.0",
     27        "stylelint-a11y": "^1.2.1"
    2428    },
     29    "browserslist": [
     30        "extends @wordpress/browserslist-config"
     31    ],
    2532    "rtlcssConfig": {
    2633        "options": {
     
    3744    },
    3845    "scripts": {
     46        "build": "npm run build:vendor-prefixes && npm run build:rtl",
    3947        "build:rtl": "concurrently \"npm run build:rtl-style\" \"npm run build:rtl-esb\" \"npm run build:rtl-esc\"",
    4048        "build:rtl-style": "rtlcss style.css style-rtl.css",
    4149        "build:rtl-esb": "rtlcss assets/css/editor-style-block.css assets/css/editor-style-block-rtl.css",
    4250        "build:rtl-esc": "rtlcss assets/css/editor-style-classic.css assets/css/editor-style-classic-rtl.css",
     51        "build:vendor-prefixes": "concurrently \"npm run build:vendor-prefixes-style\" \"npm run build:vendor-prefixes-esb\" \"npm run build:vendor-prefixes-esc\"",
     52        "build:vendor-prefixes-style": "postcss -r --no-map style.css assets/css/editor-style-block.css assets/css/editor-style-classic.css",
     53        "build:vendor-prefixes-esb": "postcss -r --no-map assets/css/editor-style-block.css ",
     54        "build:vendor-prefixes-esc": "postcss -r --no-map assets/css/editor-style-classic.css",
    4355        "lint:css": "wp-scripts lint-style 'style.css' 'assets/**/*.css'",
    4456        "lint:js": "wp-scripts lint-js 'assets/**/*.js'",
Note: See TracChangeset for help on using the changeset viewer.