2017-05-16 10:00:56 -05:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
|
|
|
import module_ from './module';
|
|
|
|
import plugins from './plugins';
|
|
|
|
|
2017-12-16 13:02:30 -06:00
|
|
|
import langs from '../locales';
|
2017-05-16 10:00:56 -05:00
|
|
|
import version from '../src/version';
|
|
|
|
|
2017-12-16 23:35:30 -06:00
|
|
|
module.exports = Object.keys(langs).map(lang => {
|
2017-05-16 10:00:56 -05:00
|
|
|
// Chunk name
|
|
|
|
const name = lang;
|
|
|
|
|
|
|
|
// Entries
|
|
|
|
const entry = {
|
2017-11-13 03:05:35 -06:00
|
|
|
desktop: './src/web/app/desktop/script.ts',
|
2018-02-09 19:27:05 -06:00
|
|
|
//mobile: './src/web/app/mobile/script.ts',
|
|
|
|
//ch: './src/web/app/ch/script.ts',
|
|
|
|
//stats: './src/web/app/stats/script.ts',
|
|
|
|
//status: './src/web/app/status/script.ts',
|
|
|
|
//dev: './src/web/app/dev/script.ts',
|
|
|
|
//auth: './src/web/app/auth/script.ts',
|
2017-11-20 14:09:45 -06:00
|
|
|
sw: './src/web/app/sw.js'
|
2017-05-16 10:00:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const output = {
|
|
|
|
path: __dirname + '/../built/web/assets',
|
|
|
|
filename: `[name].${version}.${lang}.js`
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
name,
|
|
|
|
entry,
|
2017-12-16 23:35:30 -06:00
|
|
|
module: module_(lang),
|
2017-11-03 03:46:42 -05:00
|
|
|
plugins: plugins(version, lang),
|
2017-11-13 03:05:35 -06:00
|
|
|
output,
|
|
|
|
resolve: {
|
|
|
|
extensions: [
|
|
|
|
'.js', '.ts'
|
|
|
|
]
|
|
|
|
}
|
2017-05-16 10:00:56 -05:00
|
|
|
};
|
|
|
|
});
|