Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.

Commit d332160

Browse files
committed
Upgrade deps
1 parent a4f8d8c commit d332160

File tree

8 files changed

+365
-409
lines changed

8 files changed

+365
-409
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2+
temp
23
vendor

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2+
temp
23
vendor

build.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<project name="Wavevision Point" default="init">
3-
4-
5-
<property name="src" value="php/WavevisionCodingStandard"/>
6-
<property name="tests" value="php/tests"/>
7-
<property name="phpBin" value="php"/>
3+
<property name="bin" value="vendor/bin"/>
84
<property name="codeSnifferExclude" value="*/data/*"/>
95
<property name="codeSnifferRuleset" value="codesniffer-ruleset.xml"/>
10-
<property name="bin" value="vendor/bin"/>
6+
<property name="phpBin" value="php"/>
7+
<property name="src" value="php/WavevisionCodingStandard"/>
8+
<property name="temp" value="temp"/>
9+
<property name="tests" value="php/tests"/>
1110

12-
<target name="check" description="Run lints and tests. Run before every pull request"
11+
<target name="fix" description="Run lints and tests. Run before every pull request"
1312
depends="rm-cache, lint, cs, phpstan, test"/>
1413
<target name="cs" description="Check code style and fix it if possible" depends="phpcbf, phpcs"/>
1514
<target name="init" description="Initialize project" depends="composer"/>
@@ -18,7 +17,7 @@
1817
<exec executable="rm -rf temp/cache"/>
1918
</target>
2019

21-
<target name="composer" description="Download php dependencies">
20+
<target name="composer" description="Download PHP dependencies">
2221
<exec
2322
executable="composer"
2423
logoutput="true"
@@ -29,7 +28,7 @@
2928
</exec>
3029
</target>
3130

32-
<target name="lint" description="Check php syntax">
31+
<target name="lint" description="Check PHP syntax">
3332
<exec
3433
executable="${bin}/parallel-lint"
3534
logoutput="true"
@@ -99,14 +98,15 @@
9998
</exec>
10099
</target>
101100

102-
<target name="test-no-coverage" description="Run tests without coverage">
101+
<target name="test:coverage" description="Run tests with coverage">
103102
<exec
104103
executable="${bin}/phpunit"
105104
logoutput="true"
106105
passthru="true"
107106
checkreturn="true"
108107
>
109-
<arg value="--no-coverage"/>
108+
<arg value="--coverage-html=${temp}/coverage"/>
109+
<arg value="--coverage-clover=${temp}/coverage.xml"/>
110110
</exec>
111111
</target>
112112

composer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wavevision/coding-standard",
33
"description": "The Wavevision PHP coding standard.",
4-
"version": "1.0.6",
4+
"version": "1.0.7",
55
"license": "MIT",
66
"authors": [
77
{
@@ -18,9 +18,6 @@
1818
}
1919
],
2020
"homepage": "https://github.com/wavevision/coding-standard",
21-
"config": {
22-
"bin-dir": "vendor/bin"
23-
},
2421
"require": {
2522
"php": ">=7.2",
2623
"slevomat/coding-standard": "^5.0"

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wavevision/coding-standard",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "The Wavevision SCSS and TypeScript coding standard.",
55
"repository": {
66
"type": "git",
@@ -26,48 +26,48 @@
2626
"node": "10.16.0"
2727
},
2828
"dependencies": {
29-
"@babel/core": "^7.5.5",
29+
"@babel/core": "^7.6.2",
3030
"@babel/plugin-proposal-class-properties": "^7.5.5",
31-
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
32-
"@babel/plugin-transform-react-constant-elements": "^7.5.0",
31+
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
32+
"@babel/plugin-transform-react-constant-elements": "^7.6.0",
3333
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
34-
"@babel/preset-env": "^7.5.5",
34+
"@babel/preset-env": "^7.6.2",
3535
"@babel/preset-react": "^7.0.0",
36-
"@babel/preset-typescript": "^7.3.3",
37-
"@babel/runtime": "^7.5.5",
38-
"@typescript-eslint/eslint-plugin": "^2.1.0",
39-
"@typescript-eslint/parser": "^2.1.0",
36+
"@babel/preset-typescript": "^7.6.0",
37+
"@babel/runtime": "^7.6.2",
38+
"@typescript-eslint/eslint-plugin": "^2.3.2",
39+
"@typescript-eslint/parser": "^2.3.2",
4040
"autoprefixer": "^9.6.1",
4141
"babel-jest": "^24.9.0",
4242
"core-js": "3.2.1",
43-
"eslint": "^6.3.0",
43+
"eslint": "^6.5.1",
4444
"eslint-config-airbnb": "^18.0.1",
45-
"eslint-config-prettier": "^6.1.0",
45+
"eslint-config-prettier": "^6.3.0",
4646
"eslint-import-resolver-typescript": "^1.1.1",
4747
"eslint-plugin-babel": "^5.3.0",
4848
"eslint-plugin-import": "^2.18.2",
49-
"eslint-plugin-jest": "^22.16.0",
49+
"eslint-plugin-jest": "^22.17.0",
5050
"eslint-plugin-jsx-a11y": "^6.2.3",
51-
"eslint-plugin-prettier": "^3.1.0",
52-
"eslint-plugin-react": "^7.14.3",
53-
"eslint-plugin-react-hooks": "^2.0.1",
51+
"eslint-plugin-prettier": "^3.1.1",
52+
"eslint-plugin-react": "^7.15.1",
53+
"eslint-plugin-react-hooks": "^2.1.1",
5454
"npm-run-all": "^4.1.5",
5555
"postcss-bem-linter": "^3.3.0",
5656
"postcss-reporter": "^6.0.1",
5757
"prettier": "^1.18.2",
5858
"regenerator-runtime": "^0.13.3",
59-
"stylelint": "^10.1.0",
60-
"stylelint-config-sass-guidelines": "^6.0.0",
59+
"stylelint": "^11.0.0",
60+
"stylelint-config-sass-guidelines": "^6.1.0",
6161
"stylelint-selector-bem-pattern": "^2.1.0",
62-
"typescript": "^3.6.2"
62+
"typescript": "^3.6.3"
6363
},
6464
"peerDependencies": {
65-
"@babel/core": "^7.5.5",
66-
"@typescript-eslint/eslint-plugin": "^2.1.0",
67-
"@typescript-eslint/parser": "^2.1.0",
68-
"eslint": "^6.3.0",
69-
"stylelint": "^10.1.0",
70-
"typescript": "^3.6.2"
65+
"@babel/core": "^7.6.2",
66+
"@typescript-eslint/eslint-plugin": "^2.3.2",
67+
"@typescript-eslint/parser": "^2.3.2",
68+
"eslint": "^6.5.1",
69+
"stylelint": "^11.0.0",
70+
"typescript": "^3.6.3"
7171
},
7272
"scripts": {
7373
"eslint": "eslint --fix ./scss ./ts",

phpunit.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@
2020
</testsuites>
2121

2222
<logging>
23-
<log
24-
type="coverage-html"
25-
target="temp/coverage"
26-
/>
27-
<log type="coverage-clover" target="temp/coverage.xml"/>
2823
<log
2924
type="coverage-text"
3025
target="php://stdout"

0 commit comments

Comments
 (0)