2017-05-17 00:00:56 +09:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
2018-02-22 05:05:19 +09:00
|
|
|
import * as fs from 'fs';
|
2018-03-15 05:26:24 +09:00
|
|
|
import * as webpack from 'webpack';
|
|
|
|
import chalk from 'chalk';
|
2018-09-01 07:33:04 +09:00
|
|
|
import rndstr from 'rndstr';
|
2018-04-27 19:12:15 +09:00
|
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
2018-06-18 09:54:53 +09:00
|
|
|
const jsonImporter = require('node-sass-json-importer');
|
2018-03-15 12:56:50 +09:00
|
|
|
const minifyHtml = require('html-minifier').minify;
|
2018-03-15 05:26:24 +09:00
|
|
|
const WebpackOnBuildPlugin = require('on-build-webpack');
|
2018-03-15 15:11:05 +09:00
|
|
|
//const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
2018-03-15 05:26:24 +09:00
|
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
2018-03-15 05:27:53 +09:00
|
|
|
|
2018-07-07 19:21:54 +09:00
|
|
|
import I18nReplacer from './src/misc/i18n';
|
2018-05-17 09:28:31 +09:00
|
|
|
import { pattern as i18nPattern, replacement as i18nReplacement } from './webpack/i18n';
|
2018-07-07 19:22:31 +09:00
|
|
|
import { pattern as faPattern, replacement as faReplacement } from './src/misc/fa';
|
2018-03-15 05:26:24 +09:00
|
|
|
const constants = require('./src/const.json');
|
2018-02-16 03:23:10 +09:00
|
|
|
|
2018-07-06 12:17:38 +09:00
|
|
|
const locales = require('./locales');
|
2018-03-15 05:26:24 +09:00
|
|
|
const meta = require('./package.json');
|
2018-09-01 23:12:51 +09:00
|
|
|
const version = `${meta.clientVersion}-${rndstr({ length: 8, chars: '0-9a-z' })}`;
|
2018-03-29 14:48:47 +09:00
|
|
|
const codename = meta.codename;
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2018-06-18 09:54:53 +09:00
|
|
|
declare var global: {
|
|
|
|
faReplacement: typeof faReplacement;
|
|
|
|
collapseSpacesReplacement: any;
|
|
|
|
base64replacement: any;
|
|
|
|
i18nReplacement: typeof i18nReplacement;
|
|
|
|
};
|
|
|
|
|
2018-03-15 05:27:53 +09:00
|
|
|
//#region Replacer definitions
|
2018-02-16 03:23:10 +09:00
|
|
|
global['faReplacement'] = faReplacement;
|
|
|
|
|
2018-06-18 09:54:53 +09:00
|
|
|
global['collapseSpacesReplacement'] = (html: string) => {
|
2018-03-15 12:56:50 +09:00
|
|
|
return minifyHtml(html, {
|
2018-02-18 15:27:06 +09:00
|
|
|
collapseWhitespace: true,
|
|
|
|
collapseInlineTagWhitespace: true,
|
|
|
|
keepClosingSlash: true
|
2018-02-22 05:05:19 +09:00
|
|
|
}).replace(/\t/g, '');
|
|
|
|
};
|
|
|
|
|
2018-06-18 09:54:53 +09:00
|
|
|
global['base64replacement'] = (_: any, key: string) => {
|
2018-09-01 23:12:51 +09:00
|
|
|
return fs.readFileSync(`${__dirname}/src/client/${key}`, 'base64');
|
2018-02-18 15:27:06 +09:00
|
|
|
};
|
2018-05-17 09:28:31 +09:00
|
|
|
|
|
|
|
global['i18nReplacement'] = i18nReplacement;
|
|
|
|
|
2018-03-15 05:27:53 +09:00
|
|
|
//#endregion
|
2018-02-18 15:27:06 +09:00
|
|
|
|
2018-03-15 12:56:50 +09:00
|
|
|
const langs = Object.keys(locales);
|
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
const isProduction = process.env.NODE_ENV == 'production';
|
2018-03-15 12:56:50 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
// Entries
|
|
|
|
const entry = {
|
|
|
|
desktop: './src/client/app/desktop/script.ts',
|
|
|
|
mobile: './src/client/app/mobile/script.ts',
|
|
|
|
dev: './src/client/app/dev/script.ts',
|
|
|
|
auth: './src/client/app/auth/script.ts',
|
|
|
|
sw: './src/client/app/sw.js'
|
|
|
|
};
|
2018-03-15 12:56:50 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
const output = {
|
|
|
|
path: __dirname + '/built/client/assets',
|
2018-05-21 02:13:39 +09:00
|
|
|
filename: `[name].${version}.-.js`
|
2018-05-17 09:28:31 +09:00
|
|
|
};
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
//#region Define consts
|
|
|
|
const consts = {
|
|
|
|
_THEME_COLOR_: constants.themeColor,
|
|
|
|
_COPYRIGHT_: constants.copyright,
|
|
|
|
_VERSION_: version,
|
|
|
|
_CODENAME_: codename,
|
|
|
|
_LANG_: '%lang%',
|
2018-08-30 22:10:29 +09:00
|
|
|
_LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]),
|
|
|
|
_ENV_: process.env.NODE_ENV
|
2018-05-17 09:28:31 +09:00
|
|
|
};
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2018-06-18 09:54:53 +09:00
|
|
|
const _consts: { [ key: string ]: any } = {};
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
Object.keys(consts).forEach(key => {
|
2018-06-18 09:54:53 +09:00
|
|
|
_consts[key] = JSON.stringify((consts as any)[key]);
|
2018-05-17 09:28:31 +09:00
|
|
|
});
|
|
|
|
//#endregion
|
2018-02-16 03:23:10 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
const plugins = [
|
|
|
|
//new HardSourceWebpackPlugin(),
|
|
|
|
new ProgressBarPlugin({
|
|
|
|
format: chalk` {cyan.bold yes we can} {bold [}:bar{bold ]} {green.bold :percent} {gray (:current/:total)} :elapseds`,
|
|
|
|
clear: false
|
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin(_consts),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(isProduction ? 'production' : 'development')
|
|
|
|
}),
|
2018-06-18 09:54:53 +09:00
|
|
|
new WebpackOnBuildPlugin((stats: any) => {
|
2018-05-17 09:28:31 +09:00
|
|
|
fs.writeFileSync('./built/client/meta.json', JSON.stringify({
|
|
|
|
version
|
|
|
|
}), 'utf-8');
|
2018-03-15 05:26:24 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
//#region i18n
|
|
|
|
langs.forEach(lang => {
|
|
|
|
Object.keys(entry).forEach(file => {
|
2018-05-21 02:13:39 +09:00
|
|
|
let src = fs.readFileSync(`${__dirname}/built/client/assets/${file}.${version}.-.js`, 'utf-8');
|
2018-03-15 05:26:24 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
const i18nReplacer = new I18nReplacer(lang);
|
2018-03-15 05:26:24 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
src = src.replace(i18nReplacer.pattern, i18nReplacer.replacement);
|
|
|
|
src = src.replace('%lang%', lang);
|
2018-03-15 05:26:24 +09:00
|
|
|
|
2018-05-21 02:13:39 +09:00
|
|
|
fs.writeFileSync(`${__dirname}/built/client/assets/${file}.${version}.${lang}.js`, src, 'utf-8');
|
2018-05-17 09:28:31 +09:00
|
|
|
});
|
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
}),
|
2018-05-17 12:44:55 +09:00
|
|
|
new VueLoaderPlugin()
|
2018-05-17 09:28:31 +09:00
|
|
|
];
|
2018-03-15 05:26:24 +09:00
|
|
|
|
2018-05-17 09:28:31 +09:00
|
|
|
if (isProduction) {
|
|
|
|
plugins.push(new webpack.optimize.ModuleConcatenationPlugin());
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry,
|
|
|
|
module: {
|
|
|
|
rules: [{
|
|
|
|
test: /\.vue$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
cssSourceMap: false,
|
|
|
|
compilerOptions: {
|
|
|
|
preserveWhitespace: false
|
2018-02-18 15:27:06 +09:00
|
|
|
}
|
2018-05-17 09:28:31 +09:00
|
|
|
}
|
2018-02-16 03:23:10 +09:00
|
|
|
}, {
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
2018-05-17 19:38:20 +09:00
|
|
|
qs: [{
|
|
|
|
search: /%base64:(.+?)%/g.toString(),
|
|
|
|
replace: 'base64replacement'
|
|
|
|
}, {
|
|
|
|
search: i18nPattern.toString(),
|
|
|
|
replace: 'i18nReplacement',
|
|
|
|
i18n: true
|
|
|
|
}, {
|
|
|
|
search: faPattern.toString(),
|
|
|
|
replace: 'faReplacement'
|
|
|
|
}, {
|
|
|
|
search: /^<template>([\s\S]+?)\r?\n<\/template>/.toString(),
|
|
|
|
replace: 'collapseSpacesReplacement'
|
|
|
|
}]
|
2018-05-17 09:28:31 +09:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.styl(us)?$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
oneOf: [{
|
|
|
|
resourceQuery: /module/,
|
2018-03-02 06:26:31 +09:00
|
|
|
use: [{
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-02 06:26:31 +09:00
|
|
|
}, {
|
2018-03-03 13:47:55 +09:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2018-05-17 09:28:31 +09:00
|
|
|
modules: true,
|
2018-03-03 13:47:55 +09:00
|
|
|
minimize: true
|
|
|
|
}
|
2018-03-02 06:26:31 +09:00
|
|
|
}, {
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'stylus-loader'
|
2018-03-02 06:26:31 +09:00
|
|
|
}]
|
2018-02-21 05:55:19 +09:00
|
|
|
}, {
|
2018-03-03 13:47:55 +09:00
|
|
|
use: [{
|
2018-04-27 19:12:15 +09:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-03 13:47:55 +09:00
|
|
|
}, {
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
minimize: true
|
|
|
|
}
|
2018-05-17 09:28:31 +09:00
|
|
|
}, {
|
|
|
|
loader: 'stylus-loader'
|
2018-03-03 13:47:55 +09:00
|
|
|
}]
|
2018-05-17 09:28:31 +09:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.scss$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'style-loader'
|
2018-03-02 06:26:31 +09:00
|
|
|
}, {
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
minimize: true
|
|
|
|
}
|
2018-02-16 03:23:10 +09:00
|
|
|
}, {
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
2018-09-07 05:32:09 +09:00
|
|
|
importer: jsonImporter(),
|
2018-05-17 09:28:31 +09:00
|
|
|
}
|
2018-02-16 03:23:10 +09:00
|
|
|
}]
|
2018-05-17 09:28:31 +09:00
|
|
|
}, {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-style-loader'
|
|
|
|
}, {
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
minimize: true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
|
|
|
|
loader: 'url-loader'
|
|
|
|
}, {
|
|
|
|
test: /\.ts$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'ts-loader',
|
|
|
|
options: {
|
|
|
|
happyPackMode: true,
|
|
|
|
configFile: __dirname + '/src/client/app/tsconfig.json',
|
|
|
|
appendTsSuffixTo: [/\.vue$/]
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
2018-05-25 20:41:07 +09:00
|
|
|
qs: [{
|
|
|
|
search: i18nPattern.toString(),
|
|
|
|
replace: 'i18nReplacement',
|
|
|
|
i18n: true
|
|
|
|
}, {
|
|
|
|
search: faPattern.toString(),
|
|
|
|
replace: 'faReplacement'
|
|
|
|
}]
|
2018-05-17 09:28:31 +09:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
plugins,
|
|
|
|
output,
|
|
|
|
resolve: {
|
|
|
|
extensions: [
|
|
|
|
'.js', '.ts', '.json'
|
|
|
|
],
|
|
|
|
alias: {
|
|
|
|
'const.styl': __dirname + '/src/client/const.styl'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolveLoader: {
|
|
|
|
modules: ['node_modules', './webpack/loaders']
|
|
|
|
},
|
|
|
|
cache: true,
|
|
|
|
devtool: false, //'source-map',
|
|
|
|
mode: isProduction ? 'production' : 'development'
|
|
|
|
};
|