Skip to content

Commit

Permalink
dist: upgrade eslint peer dep and a few repo cleanups (#239)
Browse files Browse the repository at this point in the history
* dist: upgrade eslint peer dep and a few repo cleanups

* dist: missed one

Co-authored-by: Richard Markins <rmarkins@gmail.com>
  • Loading branch information
rmarkins-godaddy and rxmarbles authored Dec 13, 2022
1 parent 8a31b31 commit 7bac08c
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 14 deletions.
12 changes: 12 additions & 0 deletions .changeset/unlucky-ways-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"eslint-config-godaddy-flow": major
"eslint-config-godaddy-react": major
"eslint-config-godaddy-react-flow": major
"eslint-config-godaddy-react-typescript": major
"eslint-config-godaddy-typescript": major
"eslint-config-godaddy": major
---

WHAT: Eslint peer dep upgrade
WHY: In order to support newer ecmascript versions
HOW: Updated eslint peer dependency to v8 to prevent issues w/ earlier versions
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ module.exports = {
//
strict: 0
}
}
};
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org/
6 changes: 0 additions & 6 deletions lerna.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/eslint-config-godaddy-flow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"peerDependencies": {
"@babel/core": ">=7",
"eslint": ">=7"
"eslint": ">=8"
},
"dependencies": {
"@babel/eslint-parser": "^7.16.5",
Expand Down
5 changes: 4 additions & 1 deletion packages/eslint-config-godaddy-react-flow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"peerDependencies": {
"@babel/core": ">=7",
"eslint": ">=7"
"eslint": ">=8"
},
"dependencies": {
"@babel/eslint-parser": "^7.16.5",
Expand All @@ -38,5 +38,8 @@
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
},
"devDependencies": {
"eslint": "^8.4.1"
}
}
5 changes: 4 additions & 1 deletion packages/eslint-config-godaddy-react-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
"eslint-plugin-react-hooks": "^4.3.0"
},
"peerDependencies": {
"eslint": ">=7",
"eslint": ">=8",
"typescript": ">=3"
},
"devDependencies": {
"eslint": "^8.4.1"
}
}
5 changes: 4 additions & 1 deletion packages/eslint-config-godaddy-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,16 @@
},
"peerDependencies": {
"@babel/core": ">=7",
"eslint": ">=7"
"eslint": ">=8"
},
"dependencies": {
"@babel/eslint-parser": "^7.16.5",
"eslint-config-godaddy": "^6.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
},
"devDependencies": {
"eslint": "^8.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-godaddy-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"eslint-config-godaddy": "^6.1.0"
},
"peerDependencies": {
"eslint": ">=7",
"eslint": ">=8",
"typescript": ">=4"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-godaddy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"eslint-godaddy": "bin/eslint-godaddy"
},
"peerDependencies": {
"eslint": ">=7"
"eslint": ">=8"
},
"dependencies": {
"eslint-plugin-json": "^3.1.0",
Expand Down
1 change: 0 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"test": {
"outputs": []
Expand Down

0 comments on commit 7bac08c

Please sign in to comment.