-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathwebpack.config.js
97 lines (88 loc) · 2.54 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const webpack = require('webpack');
const path = require('path');
const ReplacePlugin = require('replace-bundle-webpack-plugin');
const config = require('./package.json');
const ENV = process.env.NODE_ENV || 'development';
const development = ENV !== 'production';
const PATHS = {
BUILD: path.join(__dirname, '/dist'),
SRC: path.join(__dirname, '/src'),
MODULES: path.join(__dirname, '/node_modules'),
};
let plugins = [
// TODO: What does this do?
new webpack.NoEmitOnErrorsPlugin(),
new webpack.EnvironmentPlugin(['NODE_ENV', 'PORT', 'REMOTE_HOST'])
];
if (!development) {
// Minify source on production only
// plugins.push(new webpack.optimize.UglifyJsPlugin());
// Strip out babel-helper invariant checks
plugins.push(new ReplacePlugin([
{
// This is actually the property name https://github.com/kimhou/replace-bundle-webpack-plugin/issues/1
partten: /throw\s+(new\s+)?[a-zA-Z]+Error\s*\(/g,
replacement: () => 'return;(',
},
]));
}
module.exports = {
context: PATHS.SRC,
entry: PATHS.SRC + '/index.js',
output: {
filename: `mnml${!development ? `-${config.version}` : ''}${!development ? '.min' : ''}.js`,
path: PATHS.BUILD,
publicPath: '/',
},
optimization: {
minimize: !development,
},
module: {
rules: [
{
test: /\.jsx?$/,
include: [ PATHS.SRC ],
exclude: [ PATHS.MODULES ],
loader: 'babel-loader',
options: {
presets: [ '@babel/preset-env' ],
plugins: [
[ '@babel/plugin-proposal-class-properties' ],
[ '@babel/plugin-transform-react-jsx', { 'pragma': 'h' } ],
],
},
},
{
test: /\.css$/,
include: [ PATHS.SRC ],
exclude: [ PATHS.MODULES ],
loader: 'style-loader!css-loader',
},
],
},
plugins: plugins,
resolve: {
extensions: ['.jsx', '.js'],
modules: [
// path.resolve(__dirname, "src/lib"),
path.resolve(__dirname, 'node_modules'),
'node_modules',
],
alias: {
'components': path.resolve(__dirname, 'src/components'), // used for tests
'react-dom/server': 'preact-render-to-string',
'react': 'preact-compat',
'react-dom': 'preact-compat'
},
},
// TODO: What is cheap-module-eval-source-map?
devtool: development ? 'source-map' : false,
devServer: {
port: process.env.PORT || 3000,
host: process.env.HOST || 'localhost',
publicPath: '/',
contentBase: './example',
// TODO: What his history API fallback?
historyApiFallback: true,
}
};