react/packages
Karl Horky eb2f784e75
Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34953)
<!--
  Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.

Before submitting a pull request, please make sure the following is
done:

1. Fork [the repository](https://github.com/facebook/react) and create
your branch from `main`.
  2. Run `yarn` in the repository root.
3. If you've fixed a bug or added code that should be tested, add tests!
4. Ensure the test suite passes (`yarn test`). Tip: `yarn test --watch
TestName` is helpful in development.
5. Run `yarn test --prod` to test in the production environment. It
supports the same options as `yarn test`.
6. If you need a debugger, run `yarn test --debug --watch TestName`,
open `chrome://inspect`, and press "Inspect".
7. Format your code with
[prettier](https://github.com/prettier/prettier) (`yarn prettier`).
8. Make sure your code lints (`yarn lint`). Tip: `yarn linc` to only
check changed files.
  9. Run the [Flow](https://flowtype.org/) type checks (`yarn flow`).
  10. If you haven't already, complete the CLA.

Learn more about contributing:
https://reactjs.org/docs/how-to-contribute.html
-->

Supersedes #34951

## Summary

<!--
Explain the **motivation** for making this change. What existing problem
does the pull request solve?
-->

Fix the runtime error with named imports and make the last remaining
[Are The Types
Wrong?](https://arethetypeswrong.github.io/?p=eslint-plugin-react-hooks%400.0.0-experimental-6b344c7c-20251022)
error with `eslint-plugin-react-hooks` go away, thanks to the hint from
Andrew Branch:

- https://github.com/facebook/react/issues/34801#issuecomment-3433478810

## How did you test this change?

<!--
Demonstrate the code is solid. Example: The exact commands you ran and
their output, screenshots / videos if the pull request changes the user
interface.
How exactly did you verify that your PR solves the issue you wanted to
solve?
  If you leave this empty, your PR will very likely be closed.
-->

I tried adding this to `node_modules` and it fixed the failures when
importing named imports like `import { configs, meta, rules } from
'eslint-plugin-react-hooks'`:

```bash
➜  eslint-config-upleveled git:(renovate/react-monorepo) pnpm eslint . --max-warnings 0

Oops! Something went wrong! :(

ESLint: 9.37.0

file:///Users/k/p/eslint-config-upleveled/index.js:13
import reactHooks, { configs } from 'eslint-plugin-react-hooks';
                     ^^^^^^^
SyntaxError: Named export 'configs' not found. The requested module 'eslint-plugin-react-hooks' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:

import pkg from 'eslint-plugin-react-hooks';
const { configs } = pkg;

    at ModuleJob._instantiate (node:internal/modules/esm/module_job:228:21)
    at async ModuleJob.run (node:internal/modules/esm/module_job:335:5)
    at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:647:26)
    at async dynamicImportConfig (/Users/k/p/eslint-config-upleveled/node_modules/.pnpm/eslint@9.37.0/node_modules/eslint/lib/config/config-loader.js:186:17)
    at async loadConfigFile (/Users/k/p/eslint-config-upleveled/node_modules/.pnpm/eslint@9.37.0/node_modules/eslint/lib/config/config-loader.js:276:9)
    at async ConfigLoader.calculateConfigArray (/Users/k/p/eslint-config-upleveled/node_modules/.pnpm/eslint@9.37.0/node_modules/eslint/lib/config/config-loader.js:589:23)
    at async #calculateConfigArray (/Users/k/p/eslint-config-upleveled/node_modules/.pnpm/eslint@9.37.0/node_modules/eslint/lib/config/config-loader.js:743:23)
    at async directoryFilter (/Users/k/p/eslint-config-upleveled/node_modules/.pnpm/eslint@9.37.0/node_modules/eslint/lib/eslint/eslint-helpers.js:309:5)
    at async NodeHfs.<anonymous> (file:///Users/k/p/eslint-config-upleveled/node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/hfs.js:586:29)
    at async NodeHfs.walk (file:///Users/k/p/eslint-config-upleveled/node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/hfs.js:614:3)
➜  eslint-config-upleveled git:(renovate/react-monorepo) pnpm eslint . --max-warnings 0
➜  eslint-config-upleveled git:(renovate/react-monorepo) # no error
```

The named imports identifiers `configs`, `meta`, and `rules` also
contain values, as a sanity check:

- https://github.com/facebook/react/pull/34951#issuecomment-3433555636

cc @poteto
2025-10-22 17:51:01 -04:00
..
dom-event-testing-library Add jest lint rules (#29760) 2024-06-10 14:31:37 -04:00
eslint-plugin-react-hooks Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34953) 2025-10-22 17:51:01 -04:00
internal-test-utils Lower case "rsc stream" debug info (#34921) 2025-10-20 02:42:38 -04:00
jest-react Bump next prerelease version numbers (#31676) 2024-12-12 14:10:46 -05:00
react Resolve the .default export of a React.lazy as the canonical value (#34906) 2025-10-19 14:56:25 -04:00
react-art Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
react-cache Clean up enableSiblingPrerendering flag (#32319) 2025-05-08 20:49:23 -04:00
react-client Lower case "rsc stream" debug info (#34921) 2025-10-20 02:42:38 -04:00
react-debug-tools [Fiber][DevTools] Add scheduleRetry to DevTools Hook (#34635) 2025-09-28 13:51:35 -04:00
react-devtools React DevTools 7.0.0 -> 7.0.1 (#34926) 2025-10-20 18:39:28 +01:00
react-devtools-core React DevTools 7.0.0 -> 7.0.1 (#34926) 2025-10-20 18:39:28 +01:00
react-devtools-extensions React DevTools 7.0.0 -> 7.0.1 (#34926) 2025-10-20 18:39:28 +01:00
react-devtools-fusebox [DevTools] Don't inline workers for extensions (#34508) 2025-09-17 17:59:55 +02:00
react-devtools-inline React DevTools 7.0.0 -> 7.0.1 (#34926) 2025-10-20 18:39:28 +01:00
react-devtools-shared Fix indices of hooks in devtools when using useSyncExternalStore (#34547) 2025-10-21 13:59:20 +01:00
react-devtools-shell [DevTools] chore: add useSyncExternalStore examples to shell (#34932) 2025-10-21 13:51:44 +01:00
react-devtools-timeline React DevTools 7.0.0 -> 7.0.1 (#34926) 2025-10-20 18:39:28 +01:00
react-dom Release Fragment refs to Canary (#34720) 2025-10-06 21:24:24 -07:00
react-dom-bindings [Flight] Fix preload as attribute for stylesheets (#34760) 2025-10-10 21:40:56 +02:00
react-is Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
react-markup [Flight] Allow passing DEV only startTime as an option (#34912) 2025-10-19 16:38:33 -04:00
react-native-renderer Add getClientRects to fabric fragment instance (#34545) 2025-10-03 09:54:33 -04:00
react-noop-renderer [Fizz] Outline a Suspense Boundary if it has Suspensey CSS or Images (#34552) 2025-09-25 09:38:41 -04:00
react-reconciler [Perf Tracks]: Clear potentially large measures (#34803) 2025-10-13 17:42:13 -04:00
react-refresh Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
react-server Lower case "rsc stream" debug info (#34921) 2025-10-20 02:42:38 -04:00
react-server-dom-esm [Flight] Allow passing DEV only startTime as an option (#34912) 2025-10-19 16:38:33 -04:00
react-server-dom-fb Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
react-server-dom-parcel [Flight] Allow passing DEV only startTime as an option (#34912) 2025-10-19 16:38:33 -04:00
react-server-dom-turbopack [Flight] Allow passing DEV only startTime as an option (#34912) 2025-10-19 16:38:33 -04:00
react-server-dom-webpack [Flight] Allow passing DEV only startTime as an option (#34912) 2025-10-19 16:38:33 -04:00
react-suspense-test-utils Expose cacheSignal() alongside cache() (#33557) 2025-06-17 17:04:40 -04:00
react-test-renderer Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
scheduler Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
shared [DevTools] Infer name from stack if it's the generic "lazy" name (#34907) 2025-10-19 14:56:40 -04:00
use-subscription Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00
use-sync-external-store Bump next prerelease version numbers (#34674) 2025-10-02 00:31:55 +02:00