-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.base.js
91 lines (84 loc) · 2.62 KB
/
webpack.config.base.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
/* eslint no-unused-vars: 0 */
/**
* Base webpack config used across other specific configs
*/
import StringReplacePlugin from 'string-replace-webpack-plugin';
import path from 'path';
import validate from 'webpack-validator';
import webpack from 'webpack';
import { execSync } from 'child_process';
export default validate({
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['babel-loader?cacheDirectory'],
exclude: /node_modules/
}, {
test: /\.json$/,
loader: 'json-loader'
}, {
test: /Constants.js$/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /__SERVER_URL__/,
replacement: (match, p1, offset, string) => {
console.log(`server url ${process.env.npm_package_config_ampServerUrl}`);
return process.env.npm_package_config_ampServerUrl;
}
}
],
})
}, {
test: /Constants.js$/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /__SERVER_PORT__/,
replacement: (match, p1, offset, string) => {
console.log(`server port ${process.env.npm_package_config_ampServerPort}`);
return process.env.npm_package_config_ampServerPort;
}
}
],
})
}, {
test: /Constants.js$/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /__SERVER_PROTOCOL__/,
replacement: (match, p1, offset, string) => {
console.log(`server protocol ${process.env.npm_package_config_ampServerProtocol}`);
return process.env.npm_package_config_ampServerProtocol;
}
}
],
})
}],
},
output: {
path: path.join(__dirname, 'app'),
filename: 'bundle.js',
// https://github.com/webpack/webpack/issues/1114
libraryTarget: 'commonjs2'
},
// https://webpack.github.io/docs/configuration.html#resolve
resolve: {
extensions: ['', '.js', '.jsx', '.json'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
},
plugins: [
new webpack.DefinePlugin({
__COMMIT_HASH__: JSON.stringify(process.env.COMMIT_HASH
/* || execSync('git rev-parse --short HEAD').toString()*/),
__BRANCH_NAME__: JSON.stringify(process.env.BRANCH_NAME
/* || execSync('git rev-parse --abbrev-ref HEAD').toString()*/),
__PR_NR__: JSON.stringify(process.env.PR_NR),
__BUILD_DATE__: JSON.stringify(new Date())
}), new StringReplacePlugin(),
],
externals: [
'dtrace-provider'
]
});