Formatting changes

This commit is contained in:
Daniël van Noord
2021-03-16 13:31:30 +01:00
parent 0253e9b80d
commit f138745a0f

View File

@@ -1,19 +1,22 @@
/** We know this is not how Webpack should be used, but we are slowly transferring our code.
* For now this is how at least start to create a structure that allows us to transfer towards
* more modular code. Any help is highly appreciated.
*/
*/
const path = require('path');
module.exports = function (env) {
return {
mode: 'production',
devtool: env.production ? 'source-map' : 'eval-source-map',
entry: {
CookieMonster: { import: './src/CookieMonster.js', filename: './CookieMonster.js' },
},
output: {
filename: 'CookieMonster.js',
path: path.resolve(__dirname, 'dist'),
},
};
return {
mode: 'production',
devtool: env.production ? 'source-map' : 'eval-source-map',
entry: {
CookieMonster: {
import: './src/CookieMonster.js',
filename: './CookieMonster.js',
},
},
output: {
filename: 'CookieMonster.js',
path: path.resolve(__dirname, 'dist'),
},
};
};