Skip to content

Commit

Permalink
move eslint & prettier deps to cli
Browse files Browse the repository at this point in the history
  • Loading branch information
teimurjan committed Aug 21, 2022
1 parent a9cbdf7 commit bd3a9e6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .changeset/tender-hornets-rule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@tryrolljs/cli': patch
'@tryrolljs/eslint-config': patch
---

Move eslint & prettier deps to cli
4 changes: 3 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
"roll": "./bin/roll.js"
},
"dependencies": {
"@tryrolljs/prettier-config": "0.0.1",
"commander": "^9.4.0",
"@tryrolljs/prettier-config": "0.0.1"
"eslint": "^8.22.0",
"prettier": "^2.7.1"
},
"publishConfig": {
"access": "public"
Expand Down
13 changes: 6 additions & 7 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
{
"name": "@tryrolljs/eslint-configuration",
"name": "@tryrolljs/eslint-config",
"description": "ESLint configuration for Roll applications",
"version": "0.0.1",
"main": "./.eslintrc.js",
"dependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"react": "^18.2.0"
},
"publishConfig": {"access": "public"}
"publishConfig": {
"access": "public"
}
}

0 comments on commit bd3a9e6

Please sign in to comment.