egirlskey/webpack.config.ts

278 lines
6.7 KiB
TypeScript
Raw Normal View History

2017-05-16 15:00:56 +00:00
/**
* webpack configuration
*/
2018-02-21 20:05:19 +00:00
import * as fs from 'fs';
2018-03-14 20:26:24 +00:00
import * as webpack from 'webpack';
import chalk from 'chalk';
2018-04-27 10:12:15 +00:00
const { VueLoaderPlugin } = require('vue-loader');
2018-06-18 00:54:53 +00:00
const jsonImporter = require('node-sass-json-importer');
2018-03-15 03:56:50 +00:00
const minifyHtml = require('html-minifier').minify;
2018-03-14 20:26:24 +00:00
const WebpackOnBuildPlugin = require('on-build-webpack');
2018-03-15 06:11:05 +00:00
//const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
2018-03-14 20:26:24 +00:00
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
2018-03-14 20:27:53 +00:00
2018-07-07 10:21:54 +00:00
import I18nReplacer from './src/misc/i18n';
2018-05-17 00:28:31 +00:00
import { pattern as i18nPattern, replacement as i18nReplacement } from './webpack/i18n';
2018-07-07 10:22:31 +00:00
import { pattern as faPattern, replacement as faReplacement } from './src/misc/fa';
2018-03-14 20:26:24 +00:00
const constants = require('./src/const.json');
2018-04-02 04:15:53 +00:00
import config from './src/config';
2018-07-07 10:21:54 +00:00
import { licenseHtml } from './src/misc/license';
2018-02-15 18:23:10 +00:00
2018-07-06 03:17:38 +00:00
const locales = require('./locales');
2018-03-14 20:26:24 +00:00
const meta = require('./package.json');
const version = meta.clientVersion;
2018-03-29 05:48:47 +00:00
const codename = meta.codename;
2017-05-16 15:00:56 +00:00
2018-06-18 00:54:53 +00:00
declare var global: {
faReplacement: typeof faReplacement;
collapseSpacesReplacement: any;
base64replacement: any;
i18nReplacement: typeof i18nReplacement;
};
2018-03-14 20:27:53 +00:00
//#region Replacer definitions
2018-02-15 18:23:10 +00:00
global['faReplacement'] = faReplacement;
2018-06-18 00:54:53 +00:00
global['collapseSpacesReplacement'] = (html: string) => {
2018-03-15 03:56:50 +00:00
return minifyHtml(html, {
2018-02-18 06:27:06 +00:00
collapseWhitespace: true,
collapseInlineTagWhitespace: true,
keepClosingSlash: true
2018-02-21 20:05:19 +00:00
}).replace(/\t/g, '');
};
2018-06-18 00:54:53 +00:00
global['base64replacement'] = (_: any, key: string) => {
2018-03-29 11:32:18 +00:00
return fs.readFileSync(__dirname + '/src/client/' + key, 'base64');
2018-02-18 06:27:06 +00:00
};
2018-05-17 00:28:31 +00:00
global['i18nReplacement'] = i18nReplacement;
2018-03-14 20:27:53 +00:00
//#endregion
2018-02-18 06:27:06 +00:00
2018-03-15 03:56:50 +00:00
const langs = Object.keys(locales);
2018-05-17 00:28:31 +00:00
const isProduction = process.env.NODE_ENV == 'production';
2018-03-15 03:56:50 +00:00
2018-05-17 00:28:31 +00:00
// Entries
const entry = {
desktop: './src/client/app/desktop/script.ts',
mobile: './src/client/app/mobile/script.ts',
//stats: './src/client/app/stats/script.ts',
//status: './src/client/app/status/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 03:56:50 +00:00
2018-05-17 00:28:31 +00:00
const output = {
path: __dirname + '/built/client/assets',
2018-05-20 17:13:39 +00:00
filename: `[name].${version}.-.js`
2018-05-17 00:28:31 +00:00
};
2017-05-16 15:00:56 +00:00
2018-05-17 00:28:31 +00:00
//#region Define consts
const consts = {
2018-07-18 15:04:09 +00:00
_RECAPTCHA_SITEKEY_: config.recaptcha ? config.recaptcha.site_key : null,
2018-05-17 00:28:31 +00:00
_SW_PUBLICKEY_: config.sw ? config.sw.public_key : null,
_THEME_COLOR_: constants.themeColor,
_COPYRIGHT_: constants.copyright,
_VERSION_: version,
_CODENAME_: codename,
_STATUS_URL_: config.status_url,
_STATS_URL_: config.stats_url,
_DOCS_URL_: config.docs_url,
_API_URL_: config.api_url,
_WS_URL_: config.ws_url,
_DEV_URL_: config.dev_url,
_REPOSITORY_URL_: config.maintainer.repository_url,
_FEEDBACK_URL_: config.maintainer.feedback_url,
2018-05-17 00:28:31 +00:00
_LANG_: '%lang%',
2018-05-20 17:13:39 +00:00
_LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]),
2018-06-14 22:56:56 +00:00
_NAME_: config.name,
_DESCRIPTION_: config.description,
2018-05-17 00:28:31 +00:00
_HOST_: config.host,
_HOSTNAME_: config.hostname,
_URL_: config.url,
_LICENSE_: licenseHtml,
2018-06-15 10:56:18 +00:00
_GOOGLE_MAPS_API_KEY_: config.google_maps_api_key,
_WELCOME_BG_URL_: config.welcome_bg_url,
_TWITTER_INTEGRATION_: config.twitter != null
2018-05-17 00:28:31 +00:00
};
2017-05-16 15:00:56 +00:00
2018-06-18 00:54:53 +00:00
const _consts: { [ key: string ]: any } = {};
2017-05-16 15:00:56 +00:00
2018-05-17 00:28:31 +00:00
Object.keys(consts).forEach(key => {
2018-06-18 00:54:53 +00:00
_consts[key] = JSON.stringify((consts as any)[key]);
2018-05-17 00:28:31 +00:00
});
//#endregion
2018-02-15 18:23:10 +00:00
2018-05-17 00:28:31 +00: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 00:54:53 +00:00
new WebpackOnBuildPlugin((stats: any) => {
2018-05-17 00:28:31 +00:00
fs.writeFileSync('./built/client/meta.json', JSON.stringify({
version
}), 'utf-8');
2018-03-14 20:26:24 +00:00
2018-05-17 00:28:31 +00:00
//#region i18n
langs.forEach(lang => {
Object.keys(entry).forEach(file => {
2018-05-20 17:13:39 +00:00
let src = fs.readFileSync(`${__dirname}/built/client/assets/${file}.${version}.-.js`, 'utf-8');
2018-03-14 20:26:24 +00:00
2018-05-17 00:28:31 +00:00
const i18nReplacer = new I18nReplacer(lang);
2018-03-14 20:26:24 +00:00
2018-05-17 00:28:31 +00:00
src = src.replace(i18nReplacer.pattern, i18nReplacer.replacement);
src = src.replace('%lang%', lang);
2018-03-14 20:26:24 +00:00
2018-05-20 17:13:39 +00:00
fs.writeFileSync(`${__dirname}/built/client/assets/${file}.${version}.${lang}.js`, src, 'utf-8');
2018-05-17 00:28:31 +00:00
});
});
//#endregion
}),
2018-05-17 03:44:55 +00:00
new VueLoaderPlugin()
2018-05-17 00:28:31 +00:00
];
2018-03-14 20:26:24 +00:00
2018-05-17 00:28:31 +00: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 06:27:06 +00:00
}
2018-05-17 00:28:31 +00:00
}
2018-02-15 18:23:10 +00:00
}, {
2018-05-17 00:28:31 +00:00
loader: 'replace',
query: {
2018-05-17 10:38:20 +00: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 00:28:31 +00:00
}
}]
}, {
test: /\.styl(us)?$/,
exclude: /node_modules/,
oneOf: [{
resourceQuery: /module/,
2018-03-01 21:26:31 +00:00
use: [{
2018-05-17 00:28:31 +00:00
loader: 'vue-style-loader'
2018-03-01 21:26:31 +00:00
}, {
2018-03-03 04:47:55 +00:00
loader: 'css-loader',
options: {
2018-05-17 00:28:31 +00:00
modules: true,
2018-03-03 04:47:55 +00:00
minimize: true
}
2018-03-01 21:26:31 +00:00
}, {
2018-05-17 00:28:31 +00:00
loader: 'stylus-loader'
2018-03-01 21:26:31 +00:00
}]
2018-02-20 20:55:19 +00:00
}, {
2018-03-03 04:47:55 +00:00
use: [{
2018-04-27 10:12:15 +00:00
loader: 'vue-style-loader'
2018-03-03 04:47:55 +00:00
}, {
loader: 'css-loader',
options: {
minimize: true
}
2018-05-17 00:28:31 +00:00
}, {
loader: 'stylus-loader'
2018-03-03 04:47:55 +00:00
}]
2018-05-17 00:28:31 +00:00
}]
}, {
test: /\.scss$/,
exclude: /node_modules/,
use: [{
loader: 'style-loader'
2018-03-01 21:26:31 +00:00
}, {
2018-05-17 00:28:31 +00:00
loader: 'css-loader',
options: {
minimize: true
}
2018-02-15 18:23:10 +00:00
}, {
2018-05-17 00:28:31 +00:00
loader: 'sass-loader',
options: {
importer: jsonImporter,
}
2018-02-15 18:23:10 +00:00
}]
2018-05-17 00:28:31 +00: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 11:41:07 +00:00
qs: [{
search: i18nPattern.toString(),
replace: 'i18nReplacement',
i18n: true
}, {
search: faPattern.toString(),
replace: 'faReplacement'
}]
2018-05-17 00:28:31 +00: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'
};