forked from klaro-org/klaro-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
136 lines (125 loc) · 2.99 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
const webpack = require('webpack');
const path = require('path');
const BUILD_DIR = path.resolve(__dirname, 'dist');
const PUBLIC_DIR = path.resolve(BUILD_DIR, 'public');
const SRC_DIR = path.resolve(__dirname,'src');
const APP_ENV = process.env.APP_ENV || 'dev';
const APP_DEV_MODE = APP_ENV === 'dev' && process.env.APP_DEV_MODE;
function withEnvSourcemap(loader) {
return APP_ENV === 'dev' ? loader + '?sourceMap' : loader;
}
let config = {
mode: 'development',
target: 'web',
context: SRC_DIR,
resolve: {
symlinks: false,
extensions: ['.js', '.jsx'],
modules: [
SRC_DIR,
"node_modules"
],
alias: {
"react": "preact/compat",
"react-dom": "preact/compat"
}
},
module: {
rules: [
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
use: 'url-loader?limit=100000'
},
{
test: /\.scss|sass$/,
use: ['style-loader', withEnvSourcemap('css-loader'), withEnvSourcemap('sass-loader')]
},
{
test: /\.css$/,
use: ['style-loader', withEnvSourcemap('css-loader')]
},
{
test: /\.yaml|yml$/,
use: ['json-loader', 'yaml-loader'],
},
{
test: /\.jsx?/,
include: [SRC_DIR],
loader: 'babel-loader'
}
]
},
entry: [
SRC_DIR + '/klaro.js'
],
output: {
path: BUILD_DIR,
filename: 'klaro.js',
library: 'klaro',
libraryTarget: 'umd',
publicPath: ''
},
plugins: []
};
if (APP_ENV === 'dev') {
config = {
...config,
devtool: 'inline-source-maps',
plugins: [
...config.plugins,
new webpack.DefinePlugin({
VERSION: JSON.stringify('development'),
})
],
};
}
if (APP_DEV_MODE === 'server') {
config = {
...config,
devServer: {
// enable Hot Module Replacement on the server
hot: true,
// match the output path
contentBase: ['dist'],
// match the output `publicPath`
publicPath: '',
// always render index.html if the document does not exist (we need this for correct routing)
historyApiFallback: true,
proxy: {
'/api': {
target: 'http://localhost:5000/',
secure: false
}
},
disableHostCheck: true
},
plugins: [
...config.plugins,
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin()
]
}
}
if (APP_ENV === 'production') {
config = {
...config,
mode: 'production',
optimization: {
minimize: true
},
plugins: [
...config.plugins,
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"',
VERSION : JSON.stringify(process.env.CI_APP_VERSION || process.env.APP_VERSION || process.env.APP_COMMIT || 'unknown'),
}),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.optimize.AggressiveMergingPlugin()
]
};
}
module.exports = config;