mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
5644e81f27
Moves the plugin into the compiler directory. - Remove eslint-plugin-react-hooks from bundles.js - Remove eslint-plugin-react-hooks from ReactVersions.js - Remove jest.config.js - Remove babel.config-react-compiler.js - Replace babel.config.js with copy from eslint-plugin-react-compiler - Add tsup.config.ts to eslint-plugin-react-hooks - Add eslint-plugin-react-hooks to compiler release scripts
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
const PUBLISHABLE_PACKAGES = [
|
|
'babel-plugin-react-compiler',
|
|
'eslint-plugin-react-compiler',
|
|
'eslint-plugin-react-hooks',
|
|
'react-compiler-healthcheck',
|
|
'react-compiler-runtime',
|
|
];
|
|
|
|
module.exports = {
|
|
PUBLISHABLE_PACKAGES,
|
|
};
|