upgrade eslint and prettier
This commit is contained in:
parent
01a06e8132
commit
a034a670e2
24
package.json
24
package.json
|
@ -27,21 +27,21 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@changesets/cli": "^2.23.0",
|
"@changesets/cli": "^2.23.0",
|
||||||
"@tsconfig/strictest": "^1.0.1",
|
"@tsconfig/strictest": "^1.0.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
||||||
"@typescript-eslint/parser": "^5.12.0",
|
"@typescript-eslint/parser": "^5.55.0",
|
||||||
"eslint": "^8.9.0",
|
"eslint": "^8.36.0",
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^8.7.0",
|
||||||
"eslint-import-resolver-node": "^0.3.6",
|
"eslint-import-resolver-node": "^0.3.7",
|
||||||
"eslint-import-resolver-typescript": "^3.5.0",
|
"eslint-import-resolver-typescript": "^3.5.3",
|
||||||
"eslint-plugin-eslint-comments": "^3.2.0",
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
||||||
"eslint-plugin-import": "^2.25.2",
|
"eslint-plugin-import": "^2.27.5",
|
||||||
"eslint-plugin-jsx-a11y": "^6.5.1",
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
||||||
"eslint-plugin-react": "^7.27.0",
|
"eslint-plugin-react": "^7.32.2",
|
||||||
"eslint-plugin-react-hooks": "^4.3.0",
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
||||||
"husky": "^7.0.4",
|
"husky": "^7.0.4",
|
||||||
"lint-staged": "^12.3.4",
|
"lint-staged": "^12.3.4",
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.8.4",
|
||||||
"rimraf": "^4.1.1",
|
"rimraf": "^4.1.1",
|
||||||
"turbo": "^1.3.1",
|
"turbo": "^1.3.1",
|
||||||
"typescript": "^4.9.5",
|
"typescript": "^4.9.5",
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type ButtonProps, Button } from './button'
|
export { Button, type ButtonProps } from './button'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type IconButtonProps, IconButton } from './icon-button'
|
export { IconButton, type IconButtonProps } from './icon-button'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type PopoverProps, Popover } from './popover'
|
export { Popover, type PopoverProps } from './popover'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type ReactButtonProps, ReactButton } from './react-button'
|
export { ReactButton, type ReactButtonProps } from './react-button'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type ReplyProps, Reply } from './reply'
|
export { Reply, type ReplyProps } from './reply'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export { type TooltipProps, Tooltip } from './tooltip'
|
export { Tooltip, type TooltipProps } from './tooltip'
|
||||||
|
|
Loading…
Reference in New Issue