Make WordPress Core


Ignore:
Timestamp:
09/30/2019 05:40:14 PM (7 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 [46271], see https://github.com/WordPress/twentytwenty/compare/932b16248...dd7032f

Props anlino, ianbelanger, nielslange, acosmin, netweb, williampatton, adhitya03, phpdocs, acalfieri, itowhid06, littlebigthing, aristath, karmatosed, poena.
See #48110.

File:
1 edited

Legend:

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

    r46271 r46357  
    11{
    2   "name": "twentytwenty",
    3   "version": "1.0.0",
    4   "description": "Default WP Theme",
    5   "repository": {
    6     "type": "git",
    7     "url": "git+https://github.com/wordpress/twentytwenty.git"
    8   },
    9   "license": "GPL-2.0+",
    10   "bugs": {
    11     "url": "https://github.com/wordpress/twentytwenty/issues"
    12   },
    13   "homepage": "https://github.com/wordpress/twentytwenty#readme",
    14   "devDependencies": {
    15     "@wordpress/scripts": "^5.0.0",
    16     "concurrently": "^4.1.2",
    17     "rtlcss": "^2.4.0"
    18   },
    19   "rtlcssConfig": {
    20     "options": {
    21       "autoRename": false,
    22       "autoRenameStrict": false,
    23       "blacklist": {},
    24       "clean": true,
    25       "greedy": false,
    26       "processUrls": false,
    27       "stringMap": []
    28     },
    29     "plugins": [],
    30     "map": false
    31   },
    32   "scripts": {
    33     "build:rtl": "concurrently \"npm run build:rtl-style\" \"npm run build:rtl-esb\" \"npm run build:rtl-esc\"",
    34     "build:rtl-style": "rtlcss style.css style-rtl.css",
    35     "build:rtl-esb": "rtlcss assets/css/editor-style-block.css assets/css/editor-style-block-rtl.css",
    36     "build:rtl-esc": "rtlcss assets/css/editor-style-classic.css assets/css/editor-style-classic-rtl.css",
    37     "lint:css": "wp-scripts lint-style 'style.css' 'assets/**/*.css'",
    38     "lint:js": "wp-scripts lint-js 'assets/**/*.js'"
    39   }
     2    "name": "twentytwenty",
     3    "version": "1.0.0",
     4    "description": "Default WP Theme",
     5    "author": "The WordPress Contributors",
     6    "license": "GPL-2.0-or-later",
     7    "keywords": [
     8        "WordPress",
     9        "Theme",
     10        "TwentyTwenty"
     11    ],
     12    "homepage": "https://github.com/wordpress/twentytwenty#readme",
     13    "repository": {
     14        "type": "git",
     15        "url": "git+https://github.com/wordpress/twentytwenty.git"
     16    },
     17    "bugs": {
     18        "url": "https://github.com/wordpress/twentytwenty/issues"
     19    },
     20    "devDependencies": {
     21        "@wordpress/scripts": "^5.0.0",
     22        "concurrently": "^4.1.2",
     23        "rtlcss": "^2.4.0"
     24    },
     25    "rtlcssConfig": {
     26        "options": {
     27            "autoRename": false,
     28            "autoRenameStrict": false,
     29            "blacklist": {},
     30            "clean": true,
     31            "greedy": false,
     32            "processUrls": false,
     33            "stringMap": []
     34        },
     35        "plugins": [],
     36        "map": false
     37    },
     38    "scripts": {
     39        "build:rtl": "concurrently \"npm run build:rtl-style\" \"npm run build:rtl-esb\" \"npm run build:rtl-esc\"",
     40        "build:rtl-style": "rtlcss style.css style-rtl.css",
     41        "build:rtl-esb": "rtlcss assets/css/editor-style-block.css assets/css/editor-style-block-rtl.css",
     42        "build:rtl-esc": "rtlcss assets/css/editor-style-classic.css assets/css/editor-style-classic-rtl.css",
     43        "lint:css": "wp-scripts lint-style 'style.css' 'assets/**/*.css'",
     44        "lint:js": "wp-scripts lint-js 'assets/**/*.js'",
     45        "lint:pkg-json": "wp-scripts lint-pkg-json"
     46    }
    4047}
Note: See TracChangeset for help on using the changeset viewer.