chore: bump eslint-plugin-react-refresh to ^0.4.26 (#5452)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Shuchang Zheng 2026-04-09 19:32:55 -07:00 committed by GitHub
parent 542ee9b255
commit 7d99f0ef6b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 6 deletions

View file

@ -82,7 +82,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-react-refresh": "^0.4.26",
"lint-staged": "^15.5.2",
"postcss": "^8.4.37",
"prettier": "^3.8.1",
@ -5735,12 +5735,13 @@
}
},
"node_modules/eslint-plugin-react-refresh": {
"version": "0.4.6",
"resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz",
"integrity": "sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==",
"version": "0.4.26",
"resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz",
"integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"eslint": ">=7"
"eslint": ">=8.40"
}
},
"node_modules/eslint-scope": {

View file

@ -93,7 +93,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-react-refresh": "^0.4.26",
"lint-staged": "^15.5.2",
"postcss": "^8.4.37",
"prettier": "^3.8.1",

View file

@ -13,6 +13,7 @@ export type DebugStoreContextType = {
isDebugMode: boolean;
};
// eslint-disable-next-line react-refresh/only-export-components
export const DebugStoreContext = createContext<
DebugStoreContextType | undefined
>(undefined);