forked from brownhci/WebGazer
-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
48 lines (46 loc) · 1.23 KB
/
webpack.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 webpack = require('webpack');
const createVariants = require('parallel-webpack').createVariants;
const bannerString =`
WebGazer.js: Scalable Webcam EyeTracking Using User Interactions
Copyright (c) 2016-2020, Brown HCI Group
Licensed under GPLv3. Companies with a valuation of less than $1M can use WebGazer.js under LGPLv3.
`;
function createConfig(options) {
return {
entry: './src/index.mjs',
output: {
filename: 'webgazer' +
(options.target == 'var' ? '' : '.' + options.target) +
(options.minified ? '.min' : '') +
'.js',
library: 'webgazer',
libraryTarget: options.target,
libraryExport: 'default',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.mjs$/,
type: 'javascript/esm',
exclude: /node_modules/
}
]
},
optimization: {
minimize: options.minified
},
resolve: {
extensions: [".mjs", ".webpack.js", ".web.js", ".js", ".json"]
},
plugins: [
new webpack.BannerPlugin(bannerString),
],
devtool: "source-map"
};
}
module.exports = createVariants({
minified: [true, false],
target: ['var','commonjs2']
}, createConfig);