Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 9, 2022
1 parent d3dd119 commit dd0b366
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
39 changes: 20 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,53 +58,53 @@
"eslint-config-xo-typescript"
],
"dependencies": {
"@eslint/eslintrc": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@eslint/eslintrc": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"arrify": "^3.0.0",
"cosmiconfig": "^7.0.1",
"define-lazy-prop": "^3.0.0",
"eslint": "^8.3.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.47.1",
"eslint-config-xo": "^0.40.0",
"eslint-config-xo-typescript": "^0.50.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-ava": "^13.1.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"esm-utils": "^2.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"esm-utils": "^2.0.1",
"find-cache-dir": "^3.3.2",
"find-up": "^6.2.0",
"find-up": "^6.3.0",
"get-stdin": "^9.0.0",
"globby": "^12.0.2",
"globby": "^13.1.1",
"imurmurhash": "^0.1.4",
"json-stable-stringify-without-jsonify": "^1.0.1",
"json5": "^2.2.0",
"lodash-es": "^4.17.21",
"meow": "^10.1.2",
"micromatch": "^4.0.4",
"open-editor": "^4.0.0",
"prettier": "^2.5.0",
"prettier": "^2.5.1",
"semver": "^7.3.5",
"slash": "^4.0.0",
"to-absolute-glob": "^2.0.2",
"typescript": "^4.5.2"
"typescript": "^4.5.5"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.27.1",
"ava": "^4.0.1",
"eslint-config-xo-react": "^0.26.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^6.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"temp-write": "^5.0.0",
"webpack": "^5.64.4"
"webpack": "^5.68.0"
},
"xo": {
"ignores": [
Expand All @@ -117,7 +117,8 @@
"files": [
"!test/temp"
],
"timeout": "1m"
"timeout": "1m",
"workerThreads": false
},
"nyc": {
"reporter": [
Expand Down
4 changes: 2 additions & 2 deletions test/open-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.skip('opens nothing when there are no errors nor warnings', async t => {
const results = await xo.lintFiles(glob);

const openReport = proxyquire('../lib/open-report', {
'open-editor': files => {
'open-editor'(files) {
if (files.length > 0) {
t.fail();
}
Expand Down Expand Up @@ -48,7 +48,7 @@ test.skip('only opens errors if there are errors and warnings', async t => {
];

const openReport = proxyquire('../lib/open-report', {
'open-editor': files => {
'open-editor'(files) {
t.deepEqual(files, expected);
},
});
Expand Down

0 comments on commit dd0b366

Please sign in to comment.