mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
## Summary This tool leverages DevTools to get the component tree from the currently open React App. This gives realtime information to agents about the state of the app. ## How did you test this change? Tested integration with Claude Desktop
131 lines
3.0 KiB
JavaScript
131 lines
3.0 KiB
JavaScript
const {resolve} = require('path');
|
|
const Webpack = require('webpack');
|
|
const {
|
|
GITHUB_URL,
|
|
getVersionString,
|
|
} = require('react-devtools-extensions/utils');
|
|
const {resolveFeatureFlags} = require('react-devtools-shared/buildUtils');
|
|
|
|
const NODE_ENV = process.env.NODE_ENV;
|
|
if (!NODE_ENV) {
|
|
console.error('NODE_ENV not set');
|
|
process.exit(1);
|
|
}
|
|
|
|
const __DEV__ = NODE_ENV === 'development';
|
|
|
|
const EDITOR_URL = process.env.EDITOR_URL || null;
|
|
|
|
const DEVTOOLS_VERSION = getVersionString();
|
|
|
|
const babelOptions = {
|
|
configFile: resolve(
|
|
__dirname,
|
|
'..',
|
|
'react-devtools-shared',
|
|
'babel.config.js',
|
|
),
|
|
};
|
|
|
|
module.exports = {
|
|
mode: __DEV__ ? 'development' : 'production',
|
|
devtool: __DEV__ ? 'eval-cheap-source-map' : 'source-map',
|
|
entry: {
|
|
backend: './src/backend.js',
|
|
frontend: './src/frontend.js',
|
|
hookNames: './src/hookNames.js',
|
|
},
|
|
output: {
|
|
path: __dirname + '/dist',
|
|
publicPath: '/dist/',
|
|
filename: '[name].js',
|
|
chunkFilename: '[name].chunk.js',
|
|
library: {
|
|
type: 'commonjs2',
|
|
},
|
|
},
|
|
externals: {
|
|
react: 'react',
|
|
'react-dom': 'react-dom',
|
|
'react-dom/client': 'react-dom/client',
|
|
'react-is': 'react-is',
|
|
scheduler: 'scheduler',
|
|
},
|
|
node: {
|
|
global: false,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'react-devtools-feature-flags': resolveFeatureFlags('inline'),
|
|
},
|
|
},
|
|
optimization: {
|
|
minimize: false,
|
|
},
|
|
plugins: [
|
|
new Webpack.ProvidePlugin({
|
|
process: 'process/browser',
|
|
Buffer: ['buffer', 'Buffer'],
|
|
}),
|
|
new Webpack.DefinePlugin({
|
|
__DEV__,
|
|
__EXPERIMENTAL__: true,
|
|
__EXTENSION__: false,
|
|
__PROFILE__: false,
|
|
__TEST__: NODE_ENV === 'test',
|
|
// TODO: Should this be feature tested somehow?
|
|
__IS_CHROME__: false,
|
|
__IS_FIREFOX__: false,
|
|
__IS_EDGE__: false,
|
|
__IS_NATIVE__: false,
|
|
__IS_INTERNAL_MCP_BUILD__: false,
|
|
'process.env.DEVTOOLS_PACKAGE': `"react-devtools-inline"`,
|
|
'process.env.DEVTOOLS_VERSION': `"${DEVTOOLS_VERSION}"`,
|
|
'process.env.EDITOR_URL': EDITOR_URL != null ? `"${EDITOR_URL}"` : null,
|
|
'process.env.GITHUB_URL': `"${GITHUB_URL}"`,
|
|
'process.env.NODE_ENV': `"${NODE_ENV}"`,
|
|
}),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.worker\.js$/,
|
|
use: [
|
|
{
|
|
loader: 'workerize-loader',
|
|
options: {
|
|
inline: true,
|
|
name: '[name]',
|
|
},
|
|
},
|
|
{
|
|
loader: 'babel-loader',
|
|
options: babelOptions,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
options: babelOptions,
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
{
|
|
loader: 'style-loader',
|
|
},
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
sourceMap: __DEV__,
|
|
modules: true,
|
|
localIdentName: '[local]___[hash:base64:5]',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
};
|