mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
const { resolve } = require('path');
|
|
const { DefinePlugin } = require('webpack');
|
|
const { getGitHubURL, getVersionString } = require('../../shells/utils');
|
|
|
|
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 GITHUB_URL = getGitHubURL();
|
|
const DEVTOOLS_VERSION = getVersionString();
|
|
|
|
module.exports = {
|
|
mode: __DEV__ ? 'development' : 'production',
|
|
devtool: __DEV__ ? 'cheap-module-eval-source-map' : false,
|
|
entry: {
|
|
backend: './src/backend.js',
|
|
},
|
|
output: {
|
|
path: __dirname + '/dist',
|
|
filename: '[name].js',
|
|
|
|
// This name is important; standalone references it in order to connect.
|
|
library: 'ReactDevToolsBackend',
|
|
libraryTarget: 'umd',
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
src: resolve(__dirname, '../../src'),
|
|
},
|
|
},
|
|
plugins: [
|
|
new DefinePlugin({
|
|
__DEV__: true,
|
|
'process.env.DEVTOOLS_VERSION': `"${DEVTOOLS_VERSION}"`,
|
|
'process.env.GITHUB_URL': `"${GITHUB_URL}"`,
|
|
}),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
options: {
|
|
configFile: resolve(__dirname, '../../babel.config.js'),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|