forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-main.config.js
48 lines (43 loc) · 1.27 KB
/
webpack-main.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
const path = require('path');
const fs = require('fs');
const MAIN_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/dev/js/main');
const COMMON_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/dev/js/common');
const OUTPUT_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/js');
const entry = {};
const SECONDARY_JS_FILES = ['googleAnalytics', 'index', 'statusMessage', 'studentMotd', 'userMap'];
fs.readdirSync(MAIN_JS_FOLDER).forEach((fileName) => {
if (fileName.endsWith('.js')) {
const fileNameWithoutExt = fileName.replace('.js', '');
const filesToBundle = [
`${MAIN_JS_FOLDER}/${fileName}`,
];
if (SECONDARY_JS_FILES.indexOf(fileNameWithoutExt) === -1) {
filesToBundle.push(`${COMMON_JS_FOLDER}/onStart.js`);
}
entry[fileNameWithoutExt] = filesToBundle;
}
});
const babel = {
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env'],
cacheDirectory: true,
},
},
};
module.exports = {
entry,
output: {
filename: '[name].js',
path: OUTPUT_JS_FOLDER,
},
module: {
rules: [
babel,
],
},
stats: 'errors-only',
};