Skip to content

Commit

Permalink
Merge pull request #51 from hogashi/renovate/major-typescript-eslint-…
Browse files Browse the repository at this point in the history
…monorepo

Update typescript-eslint monorepo to v2 (major)
  • Loading branch information
hogashi authored Feb 2, 2020
2 parents 94a5018 + 1c9a7db commit 6a1c5f9
Show file tree
Hide file tree
Showing 4 changed files with 386 additions and 647 deletions.
2 changes: 1 addition & 1 deletion __tests__/ButtonSetter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ describe('ButtonSetter', () => {
}

// 4枚のときだけ2,3枚目の順序が(DOMとしては)入れ替わって表示されるのを再現する
let imgSrcs2 = [...imgSrcs];
const imgSrcs2 = [...imgSrcs];
if (imgSrcs2.length === 4) {
const tmp = imgSrcs2[1];
imgSrcs2[1] = imgSrcs2[2];
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"babel-loader": "8.0.6",
"coveralls": "3.0.9",
"enzyme": "3.11.0",
Expand All @@ -47,7 +47,7 @@
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"react-test-renderer": "16.12.0",
"typescript": "3.4.5",
"typescript": "3.7.5",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"target": "es2017",
"jsx": "react"
},
"include": ["./src/"]
"include": ["./src/", "./__tests__/"]
}
Loading

0 comments on commit 6a1c5f9

Please sign in to comment.