2017-05-16 17:00:56 +02:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
2018-02-21 21:05:19 +01:00
|
|
|
import * as fs from 'fs';
|
2018-03-14 21:26:24 +01:00
|
|
|
import * as webpack from 'webpack';
|
|
|
|
import chalk from 'chalk';
|
2018-04-27 12:12:15 +02:00
|
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
2018-03-15 04:56:50 +01:00
|
|
|
const minifyHtml = require('html-minifier').minify;
|
2018-03-14 21:26:24 +01:00
|
|
|
const WebpackOnBuildPlugin = require('on-build-webpack');
|
2018-03-15 07:11:05 +01:00
|
|
|
//const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
2018-03-14 21:26:24 +01:00
|
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
2018-03-14 21:27:53 +01:00
|
|
|
|
2018-07-07 12:21:54 +02:00
|
|
|
import I18nReplacer from './src/misc/i18n';
|
2018-05-17 02:28:31 +02:00
|
|
|
import { pattern as i18nPattern, replacement as i18nReplacement } from './webpack/i18n';
|
2018-07-07 12:22:31 +02:00
|
|
|
import { pattern as faPattern, replacement as faReplacement } from './src/misc/fa';
|
2018-03-14 21:26:24 +01:00
|
|
|
const constants = require('./src/const.json');
|
2018-02-15 19:23:10 +01:00
|
|
|
|
2018-07-06 05:17:38 +02:00
|
|
|
const locales = require('./locales');
|
2018-03-14 21:26:24 +01:00
|
|
|
const meta = require('./package.json');
|
2018-09-25 14:28:06 +02:00
|
|
|
const version = meta.clientVersion;
|
2018-03-29 07:48:47 +02:00
|
|
|
const codename = meta.codename;
|
2017-05-16 17:00:56 +02:00
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
declare var global: {
|
|
|
|
faReplacement: typeof faReplacement;
|
|
|
|
collapseSpacesReplacement: any;
|
|
|
|
base64replacement: any;
|
|
|
|
i18nReplacement: typeof i18nReplacement;
|
|
|
|
};
|
|
|
|
|
2018-03-14 21:27:53 +01:00
|
|
|
//#region Replacer definitions
|
2018-02-15 19:23:10 +01:00
|
|
|
global['faReplacement'] = faReplacement;
|
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
global['collapseSpacesReplacement'] = (html: string) => {
|
2018-03-15 04:56:50 +01:00
|
|
|
return minifyHtml(html, {
|
2018-02-18 07:27:06 +01:00
|
|
|
collapseWhitespace: true,
|
|
|
|
collapseInlineTagWhitespace: true,
|
|
|
|
keepClosingSlash: true
|
2018-02-21 21:05:19 +01:00
|
|
|
}).replace(/\t/g, '');
|
|
|
|
};
|
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
global['base64replacement'] = (_: any, key: string) => {
|
2018-09-01 16:12:51 +02:00
|
|
|
return fs.readFileSync(`${__dirname}/src/client/${key}`, 'base64');
|
2018-02-18 07:27:06 +01:00
|
|
|
};
|
2018-05-17 02:28:31 +02:00
|
|
|
|
|
|
|
global['i18nReplacement'] = i18nReplacement;
|
|
|
|
|
2018-03-14 21:27:53 +01:00
|
|
|
//#endregion
|
2018-02-18 07:27:06 +01:00
|
|
|
|
2018-03-15 04:56:50 +01:00
|
|
|
const langs = Object.keys(locales);
|
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
const isProduction = process.env.NODE_ENV == 'production';
|
2018-03-15 04:56:50 +01:00
|
|
|
|
2018-05-17 02:28:31 +02: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 04:56:50 +01:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
const output = {
|
|
|
|
path: __dirname + '/built/client/assets',
|
2018-05-20 19:13:39 +02:00
|
|
|
filename: `[name].${version}.-.js`
|
2018-05-17 02:28:31 +02:00
|
|
|
};
|
2017-05-16 17:00:56 +02:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
//#region Define consts
|
|
|
|
const consts = {
|
|
|
|
_THEME_COLOR_: constants.themeColor,
|
|
|
|
_COPYRIGHT_: constants.copyright,
|
|
|
|
_VERSION_: version,
|
|
|
|
_CODENAME_: codename,
|
|
|
|
_LANG_: '%lang%',
|
2018-08-30 15:10:29 +02:00
|
|
|
_LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]),
|
2018-09-08 16:19:11 +02:00
|
|
|
_ENV_: process.env.NODE_ENV
|
2018-05-17 02:28:31 +02:00
|
|
|
};
|
2017-05-16 17:00:56 +02:00
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
const _consts: { [ key: string ]: any } = {};
|
2017-05-16 17:00:56 +02:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
Object.keys(consts).forEach(key => {
|
2018-06-18 02:54:53 +02:00
|
|
|
_consts[key] = JSON.stringify((consts as any)[key]);
|
2018-05-17 02:28:31 +02:00
|
|
|
});
|
|
|
|
//#endregion
|
2018-02-15 19:23:10 +01:00
|
|
|
|
2018-05-17 02:28:31 +02: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 02:54:53 +02:00
|
|
|
new WebpackOnBuildPlugin((stats: any) => {
|
2018-05-17 02:28:31 +02:00
|
|
|
fs.writeFileSync('./built/client/meta.json', JSON.stringify({
|
|
|
|
version
|
|
|
|
}), 'utf-8');
|
2018-03-14 21:26:24 +01:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
//#region i18n
|
|
|
|
langs.forEach(lang => {
|
|
|
|
Object.keys(entry).forEach(file => {
|
2018-05-20 19:13:39 +02:00
|
|
|
let src = fs.readFileSync(`${__dirname}/built/client/assets/${file}.${version}.-.js`, 'utf-8');
|
2018-03-14 21:26:24 +01:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
const i18nReplacer = new I18nReplacer(lang);
|
2018-03-14 21:26:24 +01:00
|
|
|
|
2018-05-17 02:28:31 +02:00
|
|
|
src = src.replace(i18nReplacer.pattern, i18nReplacer.replacement);
|
|
|
|
src = src.replace('%lang%', lang);
|
2018-03-14 21:26:24 +01:00
|
|
|
|
2018-05-20 19:13:39 +02:00
|
|
|
fs.writeFileSync(`${__dirname}/built/client/assets/${file}.${version}.${lang}.js`, src, 'utf-8');
|
2018-05-17 02:28:31 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
}),
|
2018-05-17 05:44:55 +02:00
|
|
|
new VueLoaderPlugin()
|
2018-05-17 02:28:31 +02:00
|
|
|
];
|
2018-03-14 21:26:24 +01:00
|
|
|
|
2018-05-17 02:28:31 +02: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 07:27:06 +01:00
|
|
|
}
|
2018-05-17 02:28:31 +02:00
|
|
|
}
|
2018-09-27 17:48:17 +02:00
|
|
|
}, {
|
|
|
|
loader: 'vue-svg-inline-loader'
|
2018-02-15 19:23:10 +01:00
|
|
|
}, {
|
2018-05-17 02:28:31 +02:00
|
|
|
loader: 'replace',
|
|
|
|
query: {
|
2018-05-17 12:38:20 +02: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 02:28:31 +02:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.styl(us)?$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
oneOf: [{
|
|
|
|
resourceQuery: /module/,
|
2018-03-01 22:26:31 +01:00
|
|
|
use: [{
|
2018-05-17 02:28:31 +02:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-01 22:26:31 +01:00
|
|
|
}, {
|
2018-03-03 05:47:55 +01:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2018-05-17 02:28:31 +02:00
|
|
|
modules: true,
|
2018-03-03 05:47:55 +01:00
|
|
|
minimize: true
|
|
|
|
}
|
2018-03-01 22:26:31 +01:00
|
|
|
}, {
|
2018-05-17 02:28:31 +02:00
|
|
|
loader: 'stylus-loader'
|
2018-03-01 22:26:31 +01:00
|
|
|
}]
|
2018-02-20 21:55:19 +01:00
|
|
|
}, {
|
2018-03-03 05:47:55 +01:00
|
|
|
use: [{
|
2018-04-27 12:12:15 +02:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-03 05:47:55 +01:00
|
|
|
}, {
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
minimize: true
|
|
|
|
}
|
2018-05-17 02:28:31 +02:00
|
|
|
}, {
|
|
|
|
loader: 'stylus-loader'
|
2018-03-03 05:47:55 +01:00
|
|
|
}]
|
2018-05-17 02:28:31 +02:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-style-loader'
|
|
|
|
}, {
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
minimize: true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
|
|
|
|
loader: 'url-loader'
|
2018-10-02 09:04:31 +02:00
|
|
|
}, {
|
|
|
|
test: /\.json5$/,
|
|
|
|
loader: 'json5-loader'
|
2018-05-17 02:28:31 +02:00
|
|
|
}, {
|
|
|
|
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 13:41:07 +02:00
|
|
|
qs: [{
|
|
|
|
search: i18nPattern.toString(),
|
|
|
|
replace: 'i18nReplacement',
|
|
|
|
i18n: true
|
|
|
|
}, {
|
|
|
|
search: faPattern.toString(),
|
|
|
|
replace: 'faReplacement'
|
|
|
|
}]
|
2018-05-17 02:28:31 +02: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'
|
|
|
|
};
|