This commit is contained in:
syuilo
2018-02-16 03:23:10 +09:00
parent 085ac938c2
commit 11f32375b6
10 changed files with 70 additions and 122 deletions

View File

@ -2,12 +2,17 @@
* webpack configuration
*/
import module_ from './module';
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');
import plugins from './plugins';
import langs from '../locales';
import version from '../src/version';
global['faReplacement'] = faReplacement;
module.exports = Object.keys(langs).map(lang => {
// Chunk name
const name = lang;
@ -29,10 +34,67 @@ module.exports = Object.keys(langs).map(lang => {
filename: `[name].${version}.${lang}.js`
};
const i18nReplacer = new I18nReplacer(lang);
global['i18nReplacement'] = i18nReplacer.replacement;
return {
name,
entry,
module: module_(lang),
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/,
loader: 'ts-loader',
options: {
configFile: __dirname + '/../src/web/app/tsconfig.json',
appendTsSuffixTo: [/\.vue$/]
}
}]
},
plugins: plugins(version, lang),
output,
resolve: {