2017-05-17 00:00:56 +09:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
2018-02-16 03:23:10 +09:00
|
|
|
import I18nReplacer from '../src/common/build/i18n';
|
|
|
|
import { pattern as faPattern, replacement as faReplacement } from '../src/common/build/fa';
|
|
|
|
const constants = require('../src/const.json');
|
|
|
|
|
2017-05-17 00:00:56 +09:00
|
|
|
import plugins from './plugins';
|
|
|
|
|
2017-12-17 04:02:30 +09:00
|
|
|
import langs from '../locales';
|
2017-05-17 00:00:56 +09:00
|
|
|
import version from '../src/version';
|
|
|
|
|
2018-02-16 03:23:10 +09:00
|
|
|
global['faReplacement'] = faReplacement;
|
|
|
|
|
2017-12-17 14:35:30 +09:00
|
|
|
module.exports = Object.keys(langs).map(lang => {
|
2017-05-17 00:00:56 +09:00
|
|
|
// Chunk name
|
|
|
|
const name = lang;
|
|
|
|
|
|
|
|
// Entries
|
|
|
|
const entry = {
|
2017-11-13 18:05:35 +09:00
|
|
|
desktop: './src/web/app/desktop/script.ts',
|
2018-02-10 10:27:05 +09: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-21 05:09:45 +09:00
|
|
|
sw: './src/web/app/sw.js'
|
2017-05-17 00:00:56 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
const output = {
|
|
|
|
path: __dirname + '/../built/web/assets',
|
|
|
|
filename: `[name].${version}.${lang}.js`
|
|
|
|
};
|
|
|
|
|
2018-02-16 03:23:10 +09:00
|
|
|
const i18nReplacer = new I18nReplacer(lang);
|
|
|
|
global['i18nReplacement'] = i18nReplacer.replacement;
|
|
|
|
|
2017-05-17 00:00:56 +09:00
|
|
|
return {
|
|
|
|
name,
|
|
|
|
entry,
|
2018-02-16 03:23:10 +09:00
|
|
|
module: {
|
|
|
|
rules: [{
|
|
|
|
test: /\.vue$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
cssSourceMap: false,
|
|
|
|
preserveWhitespace: false
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'webpack-replace-loader',
|
|
|
|
options: {
|
|
|
|
search: '$theme-color',
|
|
|
|
replace: constants.themeColor,
|
|
|
|
attr: 'g'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'webpack-replace-loader',
|
|
|
|
query: {
|
|
|
|
search: '$theme-color-foreground',
|
|
|
|
replace: constants.themeColorForeground,
|
|
|
|
attr: 'g'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
|
|
|
search: i18nReplacer.pattern.toString(),
|
|
|
|
replace: 'i18nReplacement'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
|
|
|
search: faPattern.toString(),
|
|
|
|
replace: 'faReplacement'
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.styl$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [
|
|
|
|
{ loader: 'style-loader' },
|
|
|
|
{ loader: 'css-loader' },
|
|
|
|
{ loader: 'stylus-loader' }
|
|
|
|
]
|
|
|
|
}, {
|
|
|
|
test: /\.ts$/,
|
|
|
|
exclude: /node_modules/,
|
2018-02-16 03:26:59 +09:00
|
|
|
use: [{
|
|
|
|
loader: 'ts-loader',
|
|
|
|
options: {
|
|
|
|
configFile: __dirname + '/../src/web/app/tsconfig.json',
|
|
|
|
appendTsSuffixTo: [/\.vue$/]
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
|
|
|
search: i18nReplacer.pattern.toString(),
|
|
|
|
replace: 'i18nReplacement'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
|
|
|
search: faPattern.toString(),
|
|
|
|
replace: 'faReplacement'
|
|
|
|
}
|
|
|
|
}]
|
2018-02-16 03:23:10 +09:00
|
|
|
}]
|
|
|
|
},
|
2017-11-03 17:46:42 +09:00
|
|
|
plugins: plugins(version, lang),
|
2017-11-13 18:05:35 +09:00
|
|
|
output,
|
|
|
|
resolve: {
|
|
|
|
extensions: [
|
|
|
|
'.js', '.ts'
|
|
|
|
]
|
2018-02-15 13:18:34 +09:00
|
|
|
},
|
2018-02-16 02:53:54 +09:00
|
|
|
resolveLoader: {
|
|
|
|
modules: ['node_modules', './webpack/loaders']
|
|
|
|
},
|
2018-02-15 19:59:07 +09:00
|
|
|
cache: true,
|
2018-02-16 05:34:00 +09:00
|
|
|
devtool: 'eval'
|
2017-05-17 00:00:56 +09:00
|
|
|
};
|
|
|
|
});
|