Skip to content

Commit 3768078

Browse files
authored
Merge branch 'WordPress:trunk' into trunk
2 parents f41f660 + 1a30f7d commit 3768078

359 files changed

Lines changed: 44642 additions & 5026 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Set up PHP
7878
uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2.25.4
7979
with:
80-
php-version: '7.4'
80+
php-version: 'latest'
8181
coverage: none
8282
tools: cs2pr
8383

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ wp-tests-config.php
6060
!/src/wp-content/themes/twentytwentyone
6161
!/src/wp-content/themes/twentytwentytwo
6262
!/src/wp-content/themes/twentytwentythree
63+
!/src/wp-content/themes/twentytwentyfour
6364
/src/wp-content/upgrade
6465
/src/wp-content/uploads
6566
/src/wp-content/advanced-cache.php

Gruntfile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,10 @@ module.exports = function(grunt) {
171171
'webpack-assets': webpackFiles.map( function( file ) {
172172
return setFilePath( WORKING_DIR, file );
173173
} ),
174+
'interactivity-assets': [
175+
WORKING_DIR + 'wp-includes/js/dist/interactivity.asset.php',
176+
WORKING_DIR + 'wp-includes/js/dist/interactivity.min.asset.php',
177+
],
174178
dynamic: {
175179
dot: true,
176180
expand: true,
@@ -1458,6 +1462,7 @@ module.exports = function(grunt) {
14581462
'clean:webpack-assets',
14591463
'webpack:prod',
14601464
'webpack:dev',
1465+
'clean:interactivity-assets',
14611466
] );
14621467

14631468
grunt.registerTask( 'build:js', [

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
"require": {
1313
"php": ">=7.0"
1414
},
15+
"suggest": {
16+
"ext-dom": "*"
17+
},
1518
"require-dev": {
16-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
17-
"squizlabs/php_codesniffer": "3.6.0",
18-
"wp-coding-standards/wpcs": "~2.3.0",
19+
"squizlabs/php_codesniffer": "3.7.2",
20+
"wp-coding-standards/wpcs": "~3.0.0",
1921
"phpcompatibility/phpcompatibility-wp": "~2.1.3",
2022
"yoast/phpunit-polyfills": "^1.1.0"
2123
},

0 commit comments

Comments
 (0)