mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
While we still use this package internally, we now ask users to install eslint-plugin-react-hooks instead, so this package can now be deprecated on npm.
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const PUBLISHABLE_PACKAGES = [
|
|
'babel-plugin-react-compiler',
|
|
'react-compiler-healthcheck',
|
|
'react-compiler-runtime',
|
|
];
|
|
|
|
module.exports = {
|
|
PUBLISHABLE_PACKAGES,
|
|
};
|