2018-05-15 05:16:59 +02:00
|
|
|
const path = require('path');
|
|
|
|
const webpack = require('webpack');
|
2021-04-23 21:04:11 +02:00
|
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
2018-05-15 05:16:59 +02:00
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2019-02-08 05:15:17 +01:00
|
|
|
const nodeExternals = require('webpack-node-externals');
|
2021-06-07 19:25:55 +02:00
|
|
|
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
|
2018-05-15 05:16:59 +02:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV == null) {
|
|
|
|
process.env.NODE_ENV = 'development';
|
|
|
|
}
|
|
|
|
const ENV = process.env.ENV = process.env.NODE_ENV;
|
|
|
|
|
|
|
|
const moduleRules = [
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
enforce: 'pre',
|
|
|
|
loader: 'tslint-loader',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
loaders: ['ts-loader'],
|
|
|
|
exclude: path.resolve(__dirname, 'node_modules'),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const plugins = [
|
2021-04-23 21:04:11 +02:00
|
|
|
new CleanWebpackPlugin(),
|
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [
|
|
|
|
{ from: './src/locales', to: 'locales' },
|
|
|
|
]
|
|
|
|
}),
|
2018-05-15 05:16:59 +02:00
|
|
|
new webpack.DefinePlugin({
|
2018-05-17 19:50:28 +02:00
|
|
|
'process.env.BWCLI_ENV': JSON.stringify(ENV),
|
2018-05-15 05:16:59 +02:00
|
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
|
|
banner: '#!/usr/bin/env node',
|
|
|
|
raw: true
|
|
|
|
}),
|
2018-05-15 17:08:55 +02:00
|
|
|
new webpack.IgnorePlugin(/^encoding$/, /node-fetch/),
|
2018-05-15 05:16:59 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
const config = {
|
2018-09-12 05:15:36 +02:00
|
|
|
mode: ENV,
|
2018-05-15 05:16:59 +02:00
|
|
|
target: 'node',
|
2018-05-15 16:50:06 +02:00
|
|
|
devtool: ENV === 'development' ? 'eval-source-map' : 'source-map',
|
2018-05-15 05:16:59 +02:00
|
|
|
node: {
|
|
|
|
__dirname: false,
|
|
|
|
__filename: false,
|
|
|
|
},
|
|
|
|
entry: {
|
|
|
|
'bw': './src/bw.ts',
|
|
|
|
},
|
2018-09-14 22:01:35 +02:00
|
|
|
optimization: {
|
|
|
|
minimize: false,
|
|
|
|
},
|
2018-05-15 05:16:59 +02:00
|
|
|
resolve: {
|
|
|
|
extensions: ['.ts', '.js'],
|
|
|
|
symlinks: false,
|
|
|
|
modules: [path.resolve('node_modules')],
|
2021-06-07 19:25:55 +02:00
|
|
|
plugins: [new TsconfigPathsPlugin({ configFile: './tsconfig.json' })],
|
2018-05-15 05:16:59 +02:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
|
|
|
path: path.resolve(__dirname, 'build'),
|
|
|
|
},
|
2019-02-08 05:15:17 +01:00
|
|
|
module: { rules: moduleRules },
|
2018-05-15 05:16:59 +02:00
|
|
|
plugins: plugins,
|
2019-02-08 05:15:17 +01:00
|
|
|
externals: [nodeExternals()],
|
2018-05-15 05:16:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = config;
|