-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.mix.js
159 lines (154 loc) · 5.82 KB
/
webpack.mix.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
/**
* Entry point for laravel-mix/webpack compilation.
*
* Copyright 2017-2020 ICTU
* Copyright 2017-2022 Leiden University
* Copyright 2017-2023 Leon Helwerda
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const fs = require('fs'),
path = require('path'),
mix = require('laravel-mix'),
_ = require('lodash'),
HtmlWebpackPlugin = require('html-webpack-plugin');
let config = process.env.PREDICTION_CONFIGURATION;
if (config === undefined || !fs.existsSync(config)) {
config = path.resolve(__dirname, 'config.json');
}
if (!fs.existsSync(config)) {
config = path.resolve(__dirname, 'lib/config.json');
}
// Special case for some configuration keys to keep the $organization in the
// value when building a combined visualization.
const combinedConfig = new Set(["prediction_url", "branch_url", "master_url"]);
const replaceParams = (value, key, combined=true) => {
if (process.env.VISUALIZATION_COMBINED === "true" && combined) {
return value.replace(/\/\$organization/g, combinedConfig.has(key) ?
"/combined/$organization" : "/combined");
}
return value.replace(/(\/)?\$organization/g,
typeof process.env.VISUALIZATION_ORGANIZATION !== 'undefined' ?
"$1" + process.env.VISUALIZATION_ORGANIZATION : ''
);
};
const testConfiguration = {
"branches_filter": "",
"branches_url": (configuration) => `${configuration.prediction_url}branches`,
"files_url": (configuration) => `${configuration.prediction_url}files`,
"papers_url": (configuration) => `${configuration.prediction_url}papers`
};
const configuration = _.mapValues(JSON.parse(fs.readFileSync(config)),
(value, key, object) => {
if (process.env.NODE_ENV === "test" && _.has(testConfiguration, key)) {
value = _.isFunction(testConfiguration[key]) ?
testConfiguration[key](object) : testConfiguration[key];
}
if (key === "organizations") {
return value;
}
if (_.isString(value)) {
return replaceParams(value, key);
}
if (process.env.VISUALIZATION_COMBINED === "true" && value.combined) {
return replaceParams(value.combined, key, false);
}
if (typeof process.env.VISUALIZATION_ORGANIZATION !== 'undefined' &&
value[process.env.VISUALIZATION_ORGANIZATION]
) {
return replaceParams(value[process.env.VISUALIZATION_ORGANIZATION],
key
);
}
return replaceParams(value.default ? value.default : value, key);
}
);
configuration.combined = process.env.VISUALIZATION_COMBINED === "true";
const configAlias = path.resolve(__dirname, 'config-alias.json');
fs.writeFileSync(configAlias, JSON.stringify(configuration));
Mix.paths.setRootPath(__dirname);
mix.setPublicPath('public/')
.setResourceRoot('')
.js('lib/index.js', 'public/bundle.js')
.sass('res/main.scss', 'public/main.css')
.browserSync({
proxy: false,
server: 'public',
files: [
'public/**/*.js',
'public/**/*.css'
]
})
.babelConfig({
"env": {
"test": {
"plugins": [ "istanbul" ]
}
}
})
.webpackConfig({
devtool: 'source-map',
output: {
path: path.resolve('public/'),
publicPath: configuration.path
},
module: {
rules: [ {
test: /\.mustache$/,
loader: 'mustache-loader',
options: {
tiny: true,
render: Object.assign({}, configuration)
}
} ]
},
plugins: [
new HtmlWebpackPlugin({
template: 'template/index.mustache',
inject: 'body'
})
],
resolve: {
alias: {
'config.json$': configAlias
}
}
});
// Full API
// mix.js(src, output);
// mix.react(src, output); <-- Identical to mix.js(), but registers React Babel compilation.
// mix.extract(vendorLibs);
// mix.sass(src, output);
// mix.less(src, output);
// mix.stylus(src, output);
// mix.browserSync('my-site.dev');
// mix.combine(files, destination);
// mix.babel(files, destination); <-- Identical to mix.combine(), but also includes Babel compilation.
// mix.copy(from, to);
// mix.copyDirectory(fromDir, toDir);
// mix.minify(file);
// mix.sourceMaps(); // Enable sourcemaps
// mix.version(); // Enable versioning.
// mix.disableNotifications();
// mix.setPublicPath('path/to/public');
// mix.setResourceRoot('prefix/for/resource/locators');
// mix.autoload({}); <-- Will be passed to Webpack's ProvidePlugin.
// mix.webpackConfig({}); <-- Override webpack.config.js, without editing the file directly.
// mix.then(function () {}) <-- Will be triggered each time Webpack finishes building.
// mix.options({
// extractVueStyles: false, // Extract .vue component styling to file, rather than inline.
// processCssUrls: true, // Process/optimize relative stylesheet url()'s. Set to false, if you don't want them touched.
// purifyCss: false, // Remove unused CSS selectors.
// uglify: {}, // Uglify-specific options. https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
// postCss: [] // Post-CSS options: https://github.com/postcss/postcss/blob/master/docs/plugins.md
// });