Skip to content

Commit 786bc53

Browse files
committed
chore: upgrade husky and dev dependencies majors
1 parent 6dad8c2 commit 786bc53

File tree

3 files changed

+436
-878
lines changed

3 files changed

+436
-878
lines changed

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"eslint": "eslint --ext=js --ext=jsx --ext=ts --ext=tsx --fix ./src",
1212
"stylelint": "stylelint \"src/**/*.css\"",
1313
"prettier": "prettier --config ./.prettierrc.json --write \"src/**/*{.js,.jsx,.ts,.tsx,.css}\"",
14-
"prepare": "husky install",
14+
"prepare": "husky",
1515
"bundlesize": "bundlesize",
1616
"esbuild": "esbuild",
1717
"test": "jest",
@@ -71,19 +71,19 @@
7171
"esbuild-css-modules-plugin": "^2.7.1",
7272
"eslint": "8.57.0",
7373
"eslint-config-airbnb": "19.0.4",
74-
"eslint-config-prettier": "8.6.0",
74+
"eslint-config-prettier": "9.1.0",
7575
"eslint-plugin-import": "2.29.1",
7676
"eslint-plugin-jsx-a11y": "6.8.0",
77-
"eslint-plugin-prettier": "^4.0.0",
77+
"eslint-plugin-prettier": "5.1.3",
7878
"eslint-plugin-react": "7.34.1",
7979
"eslint-plugin-react-hooks": "^4.2.0",
80-
"husky": "8.0.3",
80+
"husky": "9.0.11",
8181
"jest": "29.7.0",
8282
"jest-environment-jsdom": "29.7.0",
8383
"jest-transform-css": "6.0.1",
84-
"lint-staged": "13.1.2",
85-
"postcss": "8.4.36",
86-
"prettier": "2.8.4",
84+
"lint-staged": "15.2.2",
85+
"postcss": "8.4.37",
86+
"prettier": "3.2.5",
8787
"process": "^0.11.10",
8888
"react": "16.14.0",
8989
"react-dom": "16.14.0",
@@ -101,9 +101,9 @@
101101
"rollup-plugin-terser": "^7.0.2",
102102
"rollup-plugin-visualizer": "5.12.0",
103103
"style-loader": "3.3.4",
104-
"stylelint": "^13.13.1",
105-
"stylelint-config-prettier": "^8.0.2",
106-
"stylelint-config-standard": "^22.0.0",
104+
"stylelint": "16.2.1",
105+
"stylelint-config-prettier": "9.0.5",
106+
"stylelint-config-standard": "36.0.0",
107107
"ts-jest": "29.1.2",
108108
"ts-node": "10.9.2",
109109
"typescript": "5.4.2"

src/components/TooltipController/TooltipController.tsx

+10-7
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,16 @@ const TooltipController = React.forwardRef<TooltipRefProps, ITooltipController>(
7070
const styleInjectionRef = useRef(disableStyleInjection)
7171

7272
const getDataAttributesFromAnchorElement = (elementReference: HTMLElement) => {
73-
const dataAttributes = elementReference?.getAttributeNames().reduce((acc, name) => {
74-
if (name.startsWith('data-tooltip-')) {
75-
const parsedAttribute = name.replace(/^data-tooltip-/, '') as DataAttribute
76-
acc[parsedAttribute] = elementReference?.getAttribute(name) ?? null
77-
}
78-
return acc
79-
}, {} as Record<DataAttribute, string | null>)
73+
const dataAttributes = elementReference?.getAttributeNames().reduce(
74+
(acc, name) => {
75+
if (name.startsWith('data-tooltip-')) {
76+
const parsedAttribute = name.replace(/^data-tooltip-/, '') as DataAttribute
77+
acc[parsedAttribute] = elementReference?.getAttribute(name) ?? null
78+
}
79+
return acc
80+
},
81+
{} as Record<DataAttribute, string | null>,
82+
)
8083

8184
return dataAttributes
8285
}

0 commit comments

Comments
 (0)