Skip to content

Commit 86f8c00

Browse files
committed
Update dependencies
1 parent 64407c1 commit 86f8c00

File tree

8 files changed

+23116
-47
lines changed

8 files changed

+23116
-47
lines changed

.env.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ MYSQL_USER=wordpress
55
MYSQL_PASSWORD=wordpress
66

77
# WordPress
8-
WP_VERSION=5.3.2
8+
WP_VERSION=5.4
99
WP_DB_USER=wordpress
1010
WP_DB_PASSWORD=wordpress

.eslintrc.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
11
{
22
"extends": [
3-
"plugin:@wordpress/eslint-plugin/recommended"
3+
"plugin:@wordpress/eslint-plugin/recommended",
4+
"prettier"
45
],
6+
"rules": {
7+
"@wordpress/i18n-text-domain": [
8+
"error",
9+
{
10+
"allowedTextDomain": [ "foo-bar" ]
11+
}
12+
],
13+
"prettier/prettier": [
14+
"error",
15+
{
16+
"singleQuote": true,
17+
"parenSpacing": true,
18+
"trailingComma": "es5",
19+
"jsxBracketSameLine": false,
20+
"arrowParens": "avoid"
21+
}
22+
]
23+
},
524
"overrides": [
625
{
726
"files":[

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.idea
44
composer.lock
55
foo-bar.zip
6-
package-lock.json
76
assets/css/*
87
!assets/css/src/
98
assets/js/*.js

.prettierrc.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-env node */
22

3-
module.exports = function( grunt ) {
3+
module.exports = function ( grunt ) {
44
'use strict';
55

66
// prettier-ignore

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"php": ">=5.6.20"
1414
},
1515
"require-dev": {
16-
"automattic/vipwpcs": "*",
17-
"dealerdirect/phpcodesniffer-composer-installer": "*",
18-
"php-coveralls/php-coveralls": "2.2.0",
19-
"phpcompatibility/phpcompatibility-wp": "*",
16+
"automattic/vipwpcs": "@stable",
17+
"dealerdirect/phpcodesniffer-composer-installer": "@stable",
18+
"php-coveralls/php-coveralls": "@stable",
19+
"phpcompatibility/phpcompatibility-wp": "@stable",
2020
"phpunit/phpcov": "^3.1 || ^6.0",
2121
"phpunit/phpunit": "^5.7 || ^7",
22-
"slowprog/composer-copy-file": "*",
23-
"wp-coding-standards/wpcs": "*",
24-
"xwp/wordpress-tests-installer": "*",
25-
"xwp/wp-dev-lib": "*"
22+
"slowprog/composer-copy-file": "@stable",
23+
"wp-coding-standards/wpcs": "@stable",
24+
"xwp/wordpress-tests-installer": "@stable",
25+
"xwp/wp-dev-lib": "@stable"
2626
},
2727
"scripts": {
2828
"build": [

0 commit comments

Comments
 (0)