mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-07 03:11:01 +01:00
9bde65e7ba
In coordination with the release of 6.1, a new version of each bundled theme will also be released. This bumps the version of each theme to the following: - Twenty Ten: 3.7 - Twenty Eleven: 4.2 - Twenty Twelve: 3.8 - Twenty Thirteen: 3.7 - Twenty Fourteen: 3.5 - Twenty Fifteen: 3.3 - Twenty Sixteen: 2.8 - Twenty Seventeen: 3.1 - Twenty Nineteen: 2.4 - Twenty Twenty: 2.1 - Twenty Twenty-One: 1.7 - Twenty Twenty-Two: 1.3 Additionally, this audits all `$version` parameters for `wp_(enqueue|register)_(script|style)` calls, ensuring accurate last edited or theme version values for proper caching and cache busting. Props robinwpdeveloper, desrosj, mukesh27. Fixes #56450. Built from https://develop.svn.wordpress.org/trunk@54492 git-svn-id: http://core.svn.wordpress.org/trunk@54051 1a063a9b-81f0-0310-95a4-ce76da25c4cd
71 lines
2.4 KiB
JSON
71 lines
2.4 KiB
JSON
{
|
|
"name": "twentytwentyone",
|
|
"version": "1.7.0",
|
|
"description": "Default WP Theme",
|
|
"author": "The WordPress Contributors",
|
|
"license": "GPL-2.0-or-later",
|
|
"keywords": [
|
|
"WordPress",
|
|
"Theme"
|
|
],
|
|
"bugs": {
|
|
"url": "https://core.trac.wordpress.org/"
|
|
},
|
|
"homepage": "https://wordpress.org/themes/twentytwentyone/",
|
|
"devDependencies": {
|
|
"@wordpress/browserslist-config": "^5.1.0",
|
|
"@wordpress/eslint-plugin": "^9.3.0",
|
|
"@wordpress/stylelint-config": "^19.1.0",
|
|
"autoprefixer": "^10.4.12",
|
|
"chokidar-cli": "^3.0.0",
|
|
"eslint": "^8.23.1",
|
|
"minimist": "^1.2.6",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.16",
|
|
"postcss-calc": "^8.2.4",
|
|
"postcss-cli": "^10.0.0",
|
|
"postcss-css-variables": "^0.18.0",
|
|
"postcss-custom-media": "^8.0.2",
|
|
"postcss-discard-duplicates": "^5.1.0",
|
|
"postcss-focus-within": "^6.1.1",
|
|
"postcss-merge-rules": "^5.1.2",
|
|
"postcss-nested": "^5.0.6",
|
|
"rtlcss": "^4.0.0",
|
|
"sass": "^1.55.0",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-recommended-scss": "^5.0.2"
|
|
},
|
|
"rtlcssConfig": {
|
|
"options": {
|
|
"autoRename": false,
|
|
"autoRenameStrict": false,
|
|
"blacklist": {},
|
|
"clean": true,
|
|
"greedy": false,
|
|
"processUrls": false,
|
|
"stringMap": []
|
|
},
|
|
"plugins": [],
|
|
"map": false
|
|
},
|
|
"browserslist": [
|
|
"extends @wordpress/browserslist-config"
|
|
],
|
|
"scripts": {
|
|
"start": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
|
|
"build:style": "sass assets/sass/style.scss:style.css --style=expanded --source-map",
|
|
"build:style-editor": "sass assets/sass/style-editor.scss:assets/css/style-editor.css --style=expanded --source-map",
|
|
"build:style-dark-mode": "sass assets/sass/style-dark-mode.scss:assets/css/style-dark-mode.css --style=expanded --source-map",
|
|
"build:rtl": "rtlcss style.css style-rtl.css",
|
|
"build:dark-rtl": "rtlcss assets/css/style-dark-mode.css assets/css/style-dark-mode-rtl.css",
|
|
"build:print": "sass assets/sass/07-utilities/print.scss:assets/css/print.css --style=expanded --source-map",
|
|
"build:ie": "postcss style.css -o assets/css/ie.css",
|
|
"build:ie-editor": "postcss assets/css/style-editor.css -o assets/css/ie-editor.css",
|
|
"build:stylelint": "stylelint **/*.css --fix --config .stylelintrc-css.json",
|
|
"build": "run-s \"build:*\"",
|
|
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
|
|
"lint:scss": "stylelint **/*.scss",
|
|
"lint-fix:scss": "stylelint **/*.scss --fix"
|
|
}
|
|
}
|