humus-old/webpack.server.config.js
2019-11-22 02:19:57 -06:00

54 lines
1.5 KiB
JavaScript

const path = require('path');
const {AvocadoPlugin} = require('@avocado/core/webpack/plugin');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const StartServerPlugin = require('start-server-webpack-plugin');
const config = require('./webpack.common.config');
const isProduction = !!process.argv.find((arg) => '--production' === arg);
if (!isProduction) {
config.devtool = 'source-map';
}
config.entry = {
server: [
'source-map-support/register',
'@avocado/core/webpack/entry',
path.join(__dirname, 'server', 'index.js'),
],
};
if (process.argv.find((arg) => '--hot' === arg)) {
config.entry.server.unshift('webpack/hot/signal');
}
config.externals = [
nodeExternals({
whitelist: /(?:@avocado|@pixi|webpack\/hot\/signal)/,
}),
];
config.module.rules[0].use.options.configFile = path.resolve(
__dirname, 'babel.server.config.js'
);
const nodeArgs = ['--preserve-symlinks'];
if (process.argv.find((arg) => '--inspect' === arg)) {
nodeArgs.push('--inspect');
}
if (process.argv.find((arg) => '--prof' === arg)) {
nodeArgs.push('--prof');
}
if (process.argv.find((arg) => '--autorun' === arg)) {
config.plugins.push(new StartServerPlugin({
name: 'server.js',
nodeArgs: nodeArgs,
signal: true,
}));
}
config.plugins.push(new webpack.DefinePlugin({
AVOCADO_CLIENT: false,
AVOCADO_SERVER: true,
}));
config.plugins.push(new AvocadoPlugin(__dirname, 'server'));
config.target = 'node';
module.exports = config;