react/compiler/scripts/release/shared/packages.js
lauren f508edc83f
[compiler] Stop publishing eslint-plugin-react-compiler to npm (#34228)
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.
2025-08-18 11:34:55 -04:00

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,
};