forked from tidepool-org/uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.production.js
executable file
·202 lines (179 loc) · 5.56 KB
/
webpack.config.production.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/**
* Build config for electron 'Renderer Process' file
*/
import path from 'path';
import webpack from 'webpack';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import merge from 'webpack-merge';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import BabiliPlugin from 'babili-webpack-plugin';
import baseConfig from './webpack.config.base';
import RollbarSourceMapPlugin from 'rollbar-sourcemap-webpack-plugin';
import cp from 'child_process';
const VERSION_SHA = process.env.CIRCLE_SHA1 ||
process.env.APPVEYOR_REPO_COMMIT ||
cp.execSync('git rev-parse HEAD', {cwd: __dirname, encoding: 'utf8' });
const ROLLBAR_POST_TOKEN = process.env.ROLLBAR_POST_TOKEN;
if (process.env.DEBUG_ERROR === 'true') {
console.log('~ ~ ~ ~ ~ ~ ~ ~ ~ ~');
console.log('### DEBUG MODE ###');
console.log('~ ~ ~ ~ ~ ~ ~ ~ ~ ~');
console.log();
}
if ((!process.env.API_URL && !process.env.UPLOAD_URL && !process.env.DATA_URL && !process.env.BLIP_URL)) {
console.log('Using the default environment, which is now production.');
} else {
console.log('***** NOT using the default environment *****');
console.log('The default right-click server menu may be incorrect.');
console.log('API_URL =', process.env.API_URL);
console.log('UPLOAD_URL =', process.env.UPLOAD_URL);
console.log('DATA_URL =', process.env.DATA_URL);
console.log('BLIP_URL =', process.env.BLIP_URL);
}
export default merge(baseConfig, {
devtool: 'source-map',
entry: ['babel-polyfill', './app/index'],
output: {
path: path.join(__dirname, 'app/dist'),
publicPath: '../dist/'
},
module: {
rules: [
// Extract all .global.css to style.css as is
{
test: /\.global\.css$/,
use: ExtractTextPlugin.extract({
fallback: {
loader: 'style-loader',
options: {
hmr: false
}
},
use: 'css-loader'
})
},
// Pipe other styles through css modules and append to style.css
{
test: /^((?!\.global).)*\.css$/,
use: ExtractTextPlugin.extract({
fallback: {
loader: 'style-loader',
options: {
hmr: false
}
},
use: 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]'
})
},
{
test: /\.module\.less$/,
use: [{
loader: 'style-loader',
options: {
hmr: false
}
}, {
loader: 'css-loader',
options: {
modules: true,
importLoaders: 1,
localIdentName: '[name]__[local]___[hash:base64:5]'
}
}, {
loader: 'less-loader'
}]
},
{
test: /^((?!module).)*\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'less-loader']
})
},
// Fonts
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, use: [{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff'
}
}] },
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, use: [{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff'
}
}] },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, use: [{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/octet-stream'
}
}] },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, use: [{
loader: 'file-loader'
}] },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, use: [{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'image/svg+xml'
}
}] },
// Images
{
test: /\.(?:ico|gif|png|jpg|jpeg|webp)$/,
use: [{
loader: 'url-loader'
}]
}
]
},
plugins: [
/**
* Create global constants which can be configured at compile time.
*
* Useful for allowing different behaviour between development builds and
* release builds
*
* NODE_ENV should be production so that modules do not perform certain
* development checks
*/
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV) || '"production"',
'process.env.BUILD': JSON.stringify(process.env.BUILD) || '"prod"',
__DEBUG__: JSON.stringify(JSON.parse(process.env.DEBUG_ERROR || 'false')),
__VERSION_SHA__: JSON.stringify(VERSION_SHA),
__ROLLBAR_POST_TOKEN__: JSON.stringify(ROLLBAR_POST_TOKEN),
'global.GENTLY': false, // http://github.com/visionmedia/superagent/wiki/SuperAgent-for-Webpack for platform-client
}),
/**
* Babli is an ES6+ aware minifier based on the Babel toolchain (beta)
new BabiliPlugin({
// Disable deadcode until https://github.com/babel/babili/issues/385 fixed
deadcode: false,
}),
*/
new ExtractTextPlugin({ filename: 'style.css', allChunks: true }),
/**
* Dynamically generate index.html page
*/
new HtmlWebpackPlugin({
filename: '../app.html',
template: 'app/app.html',
inject: false
}),
/** Upload sourcemap to Rollbar */
new RollbarSourceMapPlugin({
accessToken: ROLLBAR_POST_TOKEN,
version: VERSION_SHA,
publicPath: 'http://dynamichost/dist'
})],
// https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works
target: 'electron-renderer',
node: {
__dirname: true, // https://github.com/visionmedia/superagent/wiki/SuperAgent-for-Webpack for platform-client
}
});