Changeset 46445 for trunk/src/wp-content/themes/twentytwenty/package.json
- Timestamp:
- 10/08/2019 07:05:53 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/package.json
r46357 r46445 19 19 }, 20 20 "devDependencies": { 21 "@wordpress/browserslist-config": "^2.6.0", 21 22 "@wordpress/scripts": "^5.0.0", 23 "autoprefixer": "^9.6.1", 22 24 "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" 24 28 }, 29 "browserslist": [ 30 "extends @wordpress/browserslist-config" 31 ], 25 32 "rtlcssConfig": { 26 33 "options": { … … 37 44 }, 38 45 "scripts": { 46 "build": "npm run build:vendor-prefixes && npm run build:rtl", 39 47 "build:rtl": "concurrently \"npm run build:rtl-style\" \"npm run build:rtl-esb\" \"npm run build:rtl-esc\"", 40 48 "build:rtl-style": "rtlcss style.css style-rtl.css", 41 49 "build:rtl-esb": "rtlcss assets/css/editor-style-block.css assets/css/editor-style-block-rtl.css", 42 50 "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", 43 55 "lint:css": "wp-scripts lint-style 'style.css' 'assets/**/*.css'", 44 56 "lint:js": "wp-scripts lint-js 'assets/**/*.js'",
Note: See TracChangeset
for help on using the changeset viewer.