forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-test.config.js
38 lines (34 loc) · 983 Bytes
/
webpack-test.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
const path = require('path');
const fs = require('fs');
const TEST_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/dev/js/test');
const COMMON_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/dev/js/common');
const OUTPUT_JS_FOLDER = path.resolve(__dirname, 'src/main/webapp/test');
const entry = {};
entry.tableSort = [`${COMMON_JS_FOLDER}/onStart.es6`];
entry.jsUnitTests = fs.readdirSync(TEST_JS_FOLDER)
.filter(fileName => fileName.endsWith('.es6'))
.map(fileName => `${TEST_JS_FOLDER}/${fileName}`);
const babel = {
test: /\.(?:js|es6)$/,
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',
};