2017-02-27 02:51:38 +09:00
|
|
|
/**
|
|
|
|
* webpack config
|
|
|
|
*/
|
|
|
|
|
2017-02-19 15:54:19 +09:00
|
|
|
import * as webpack from 'webpack';
|
|
|
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
2017-03-23 05:53:09 +09:00
|
|
|
|
2017-03-23 00:41:11 +09:00
|
|
|
import version from './src/version';
|
2017-02-22 10:49:11 +09:00
|
|
|
const constants = require('./src/const.json');
|
|
|
|
|
2017-03-23 05:53:09 +09:00
|
|
|
const languages = {
|
|
|
|
'en': require('./locales/en.json'),
|
|
|
|
'en-US': require('./locales/en.json'),
|
|
|
|
'ja': require('./locales/ja.json')
|
|
|
|
};
|
|
|
|
|
2017-02-27 02:51:38 +09:00
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const isProduction = env === 'production';
|
2017-02-19 15:54:19 +09:00
|
|
|
|
2017-03-23 05:53:09 +09:00
|
|
|
module.exports = (Object as any).entries(languages).map(([lang, locale]) => {
|
|
|
|
const pack /*: webpack.Configuration ← fuck wrong type definition!!! */ = {
|
|
|
|
name: lang,
|
|
|
|
entry: {
|
|
|
|
'desktop': './src/web/app/desktop/script.js',
|
|
|
|
'mobile': './src/web/app/mobile/script.js',
|
|
|
|
'dev': './src/web/app/dev/script.js',
|
|
|
|
'auth': './src/web/app/auth/script.js'
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
enforce: 'pre',
|
|
|
|
test: /\.*$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: StringReplacePlugin.replace({
|
|
|
|
replacements: [
|
|
|
|
{ pattern: /'i18n:(.+?)'/g, replacement: (_, text) => locale[text] }
|
|
|
|
]
|
|
|
|
})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
enforce: 'pre',
|
|
|
|
test: /\.tag$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: StringReplacePlugin.replace({
|
|
|
|
replacements: [
|
|
|
|
{ pattern: /\$theme\-color\-foreground/g, replacement: () => constants.themeColorForeground },
|
|
|
|
{ pattern: /\$theme\-color/g, replacement: () => constants.themeColor },
|
|
|
|
]
|
|
|
|
})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.tag$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: 'riot-tag-loader',
|
|
|
|
query: {
|
|
|
|
hot: false,
|
|
|
|
style: 'stylus',
|
|
|
|
expr: false,
|
|
|
|
compact: true,
|
|
|
|
parserOptions: {
|
|
|
|
style: {
|
|
|
|
compress: true
|
|
|
|
}
|
2017-02-19 15:54:19 +09:00
|
|
|
}
|
|
|
|
}
|
2017-03-23 05:53:09 +09:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.styl$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [
|
|
|
|
{ loader: 'style-loader' },
|
|
|
|
{ loader: 'css-loader' },
|
|
|
|
{ loader: 'stylus-loader' }
|
|
|
|
]
|
2017-02-19 15:54:19 +09:00
|
|
|
}
|
2017-03-23 05:53:09 +09:00
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
VERSION: JSON.stringify(version),
|
|
|
|
THEME_COLOR: JSON.stringify(constants.themeColor)
|
|
|
|
}),
|
|
|
|
new StringReplacePlugin()
|
|
|
|
],
|
|
|
|
output: {
|
|
|
|
path: __dirname + '/built/web/assets',
|
|
|
|
filename: `[name]/script.${version}.${lang}.js`
|
|
|
|
}
|
|
|
|
};
|
2017-03-23 00:41:11 +09:00
|
|
|
|
2017-03-23 05:53:09 +09:00
|
|
|
if (isProduction) {
|
|
|
|
//pack.plugins.push(new webpack.optimize.UglifyJsPlugin());
|
|
|
|
}
|
2017-02-27 02:51:38 +09:00
|
|
|
|
2017-03-23 05:53:09 +09:00
|
|
|
return pack;
|
|
|
|
});
|