Skip to content

Commit b66a73a

Browse files
authored
fix: @changesets/cli and @types/eslint should be devDependencies (#940)
1 parent 696254f commit b66a73a

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.changeset/mighty-kiwis-teach.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"prettier-eslint": patch
3+
---
4+
5+
fix: @changesets/cli and @types/eslint should be devDependencies

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const config = {
2020
],
2121
'import/no-import-module-exports': 'off',
2222
'arrow-parens': ['error', 'as-needed'],
23-
quotes: ['error', 'single']
23+
quotes: ['error', 'single', { avoidEscape: true }],
2424
}
2525
};
2626

package.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
"keywords": [],
1717
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
1818
"maintainers": [
19-
"Simon Fridlund <[email protected]>"
19+
"Simon Fridlund <[email protected]>",
20+
"JounQin (https://www.1stG.me) <[email protected]>"
2021
],
2122
"license": "MIT",
2223
"dependencies": {
23-
"@changesets/cli": "^2.26.2",
24-
"@types/eslint": "^8.4.2",
2524
"@typescript-eslint/parser": "^6.7.5",
2625
"common-tags": "^1.4.0",
2726
"dlv": "^1.1.0",
@@ -37,16 +36,16 @@
3736
},
3837
"devDependencies": {
3938
"@babel/cli": "^7.22.9",
40-
"@babel/core": "^7.22.9",
39+
"@babel/core": "^7.23.2",
4140
"@babel/preset-env": "^7.22.9",
4241
"@changesets/changelog-github": "^0.4.8",
42+
"@changesets/cli": "^2.26.2",
43+
"@types/eslint": "^8.4.2",
4344
"all-contributors-cli": "^6.7.0",
44-
"babel-jest": "^29.6.2",
4545
"eslint-config-kentcdodds": "^20.5.0",
4646
"eslint-plugin-node-dependencies": "^0.11.0",
4747
"husky": "^8.0.1",
4848
"jest": "^29.6.2",
49-
"jest-cli": "^29.6.2",
5049
"nps": "^5.7.1",
5150
"nps-utils": "^1.3.0",
5251
"prettier-eslint-cli": "^8.0.0",

0 commit comments

Comments
 (0)