humus-old/webpack.server.config.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-03-20 15:28:18 -05:00
const path = require('path');
2019-04-20 14:16:06 -05:00
const webpack = require('webpack');
2019-03-20 15:28:18 -05:00
const nodeExternals = require('webpack-node-externals');
const StartServerPlugin = require('start-server-webpack-plugin');
const config = require('./webpack.common.config');
config.devtool = 'source-map';
2019-03-20 15:28:18 -05:00
config.entry = {
server: [
'source-map-support/register',
'@babel/polyfill',
2019-04-14 21:32:48 -05:00
path.join(__dirname, 'register-packets.js'),
'@avocado/behavior/item/initialize',
path.join(__dirname, 'server', 'index.js'),
2019-03-20 15:28:18 -05:00
],
};
2019-04-30 18:22:19 -05:00
if (process.argv.find((arg) => '--hot' === arg)) {
config.entry.server.unshift('webpack/hot/signal');
}
2019-03-20 15:28:18 -05:00
config.externals = [
nodeExternals({
2019-04-20 14:16:06 -05:00
whitelist: /(?:@avocado|webpack\/hot\/signal)/,
2019-03-20 15:28:18 -05:00
}),
];
2019-04-14 20:39:27 -05:00
config.module.rules[1].use.options.paths.push(
path.resolve(__dirname, 'server'),
);
2019-04-14 21:32:48 -05:00
config.module.rules[2].use.options.paths.push(
path.resolve(__dirname, 'server'),
);
2019-04-12 13:44:56 -05:00
const nodeArgs = [];
if (process.argv.find((arg) => '--prof' === arg)) {
nodeArgs.push('--prof');
}
2019-04-30 18:22:19 -05:00
if (process.argv.find((arg) => '--autorun' === arg)) {
config.plugins.push(new StartServerPlugin({
name: 'server.js',
nodeArgs: nodeArgs,
signal: true,
}));
}
2019-04-22 21:03:16 -05:00
config.plugins.push(new webpack.DefinePlugin({
AVOCADO_CLIENT: false,
AVOCADO_SERVER: true,
}));
2019-03-20 15:28:18 -05:00
config.target = 'node';
module.exports = config;