iceshrimp-legacy/webpack.config.ts

275 lines
6.5 KiB
TypeScript
Raw Normal View History

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-06-18 02:54:53 +02:00
const jsonImporter = require('node-sass-json-importer');
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-03-28 18:20:40 +02:00
import I18nReplacer from './src/build/i18n';
2018-05-17 02:28:31 +02:00
import { pattern as i18nPattern, replacement as i18nReplacement } from './webpack/i18n';
2018-03-28 18:20:40 +02:00
import { pattern as faPattern, replacement as faReplacement } from './src/build/fa';
2018-03-14 21:26:24 +01:00
const constants = require('./src/const.json');
2018-04-02 06:15:53 +02:00
import config from './src/config';
2018-03-28 18:20:40 +02:00
import { licenseHtml } from './src/build/license';
2018-02-15 19:23:10 +01:00
2018-03-15 04:56:50 +01:00
import locales from './locales';
2018-03-14 21:26:24 +01:00
const meta = require('./package.json');
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-03-29 13:32:18 +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',
//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 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 = {
_RECAPTCHA_SITEKEY_: config.recaptcha.site_key,
_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,
_LANG_: '%lang%',
2018-05-20 19:13:39 +02:00
_LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]),
2018-06-15 00:56:56 +02:00
_NAME_: config.name,
_DESCRIPTION_: config.description,
2018-05-17 02:28:31 +02:00
_HOST_: config.host,
_HOSTNAME_: config.hostname,
_URL_: config.url,
_LICENSE_: licenseHtml,
2018-06-15 12:56:18 +02:00
_GOOGLE_MAPS_API_KEY_: config.google_maps_api_key,
_WELCOME_BG_URL_: config.welcome_bg_url
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-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: /\.scss$/,
exclude: /node_modules/,
use: [{
loader: 'style-loader'
2018-03-01 22:26:31 +01:00
}, {
2018-05-17 02:28:31 +02:00
loader: 'css-loader',
options: {
minimize: true
}
2018-02-15 19:23:10 +01:00
}, {
2018-05-17 02:28:31 +02:00
loader: 'sass-loader',
options: {
importer: jsonImporter,
}
2018-02-15 19:23:10 +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'
}, {
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'
};