iceshrimp-legacy/webpack.config.ts

246 lines
5.7 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-03-01 22:26:31 +01:00
import jsonImporter from '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-14 21:26:24 +01:00
import I18nReplacer from './src/common/build/i18n';
import { pattern as faPattern, replacement as faReplacement } from './src/common/build/fa';
const constants = require('./src/const.json');
import config from './src/conf';
import { licenseHtml } from './src/common/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');
2018-03-02 23:32:18 +01:00
const version = meta.version;
2018-03-28 02:27:57 +02:00
const codename = meta.codename;
2017-05-16 17:00:56 +02:00
2018-03-14 21:27:53 +01:00
//#region Replacer definitions
2018-02-15 19:23:10 +01:00
global['faReplacement'] = faReplacement;
2018-02-18 07:27:06 +01:00
global['collapseSpacesReplacement'] = html => {
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, '');
};
global['base64replacement'] = (_, key) => {
2018-03-14 21:26:24 +01:00
return fs.readFileSync(__dirname + '/src/web/' + key, 'base64');
2018-02-18 07:27:06 +01:00
};
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-03-18 09:21:58 +01:00
const entries = process.env.NODE_ENV == 'production'
2018-03-15 21:45:28 +01:00
? langs.map(l => [l, false]).concat(langs.map(l => [l, true]))
: [['ja', false]];
2018-03-15 04:56:50 +01:00
module.exports = entries.map(x => {
2018-03-18 09:21:58 +01:00
const [lang, isProduction] = x;
2018-03-15 04:56:50 +01:00
2017-05-16 17:00:56 +02:00
// Chunk name
const name = lang;
// Entries
const entry = {
2017-11-13 10:05:35 +01:00
desktop: './src/web/app/desktop/script.ts',
2018-02-21 18:00:30 +01:00
mobile: './src/web/app/mobile/script.ts',
2018-02-10 02:27:05 +01:00
//ch: './src/web/app/ch/script.ts',
//stats: './src/web/app/stats/script.ts',
//status: './src/web/app/status/script.ts',
2018-02-27 16:11:28 +01:00
dev: './src/web/app/dev/script.ts',
auth: './src/web/app/auth/script.ts',
2017-11-20 21:09:45 +01:00
sw: './src/web/app/sw.js'
2017-05-16 17:00:56 +02:00
};
const output = {
2018-03-14 21:26:24 +01:00
path: __dirname + '/built/web/assets',
2018-03-18 09:21:58 +01:00
filename: `[name].${version}.${lang}.${isProduction ? 'min' : 'raw'}.js`
2017-05-16 17:00:56 +02:00
};
2018-03-15 04:56:50 +01:00
const i18nReplacer = new I18nReplacer(lang as string);
2018-02-15 19:23:10 +01:00
global['i18nReplacement'] = i18nReplacer.replacement;
2018-03-14 21:26:24 +01: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,
2018-03-28 02:27:57 +02:00
_CODENAME_: codename,
2018-03-14 21:26:24 +01:00
_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,
2018-03-14 21:26:24 +01:00
_DEV_URL_: config.dev_url,
_LANG_: lang,
_HOST_: config.host,
2018-03-26 06:21:41 +02:00
_HOSTNAME_: config.hostname,
2018-03-14 21:26:24 +01:00
_URL_: config.url,
_LICENSE_: licenseHtml,
_GOOGLE_MAPS_API_KEY_: config.google_maps_api_key
};
const _consts = {};
Object.keys(consts).forEach(key => {
_consts[key] = JSON.stringify(consts[key]);
});
//#endregion
const plugins = [
2018-03-15 07:11:05 +01:00
//new HardSourceWebpackPlugin(),
2018-03-14 21:26:24 +01:00
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({
2018-03-18 09:21:58 +01:00
'process.env.NODE_ENV': JSON.stringify(isProduction ? 'production' : 'development')
2018-03-14 21:26:24 +01:00
}),
new WebpackOnBuildPlugin(stats => {
fs.writeFileSync('./version.json', JSON.stringify({
version
}), 'utf-8');
})
];
2018-03-18 09:21:58 +01:00
if (isProduction) {
2018-03-14 21:26:24 +01:00
plugins.push(new webpack.optimize.ModuleConcatenationPlugin());
}
2017-05-16 17:00:56 +02:00
return {
name,
entry,
2018-02-15 19:23:10 +01:00
module: {
rules: [{
test: /\.vue$/,
exclude: /node_modules/,
2018-03-03 01:49:47 +01:00
use: [{
2018-02-15 19:23:10 +01:00
loader: 'vue-loader',
options: {
cssSourceMap: false,
preserveWhitespace: false
}
2018-02-21 21:05:19 +01:00
}, {
loader: 'replace',
query: {
search: /%base64:(.+?)%/g.toString(),
replace: 'base64replacement'
}
2018-02-15 19:23:10 +01:00
}, {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
}
}, {
loader: 'replace',
query: {
search: faPattern.toString(),
replace: 'faReplacement'
}
2018-02-18 07:27:06 +01:00
}, {
loader: 'replace',
query: {
search: /^<template>([\s\S]+?)\r?\n<\/template>/.toString(),
replace: 'collapseSpacesReplacement'
}
2018-02-15 19:23:10 +01:00
}]
}, {
test: /\.styl$/,
exclude: /node_modules/,
2018-03-03 05:47:55 +01:00
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
minimize: true
}
}, {
loader: 'stylus-loader'
2018-03-19 14:48:00 +01:00
}]
2018-03-01 22:26:31 +01:00
}, {
test: /\.scss$/,
exclude: /node_modules/,
use: [{
loader: 'style-loader'
}, {
2018-03-03 05:47:55 +01:00
loader: 'css-loader',
options: {
minimize: true
}
2018-03-01 22:26:31 +01:00
}, {
loader: 'sass-loader',
options: {
importer: jsonImporter,
}
}]
2018-02-20 21:55:19 +01:00
}, {
test: /\.css$/,
2018-03-03 05:47:55 +01:00
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
minimize: true
}
}]
2018-03-01 22:26:31 +01:00
}, {
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
2018-03-03 01:49:47 +01:00
loader: 'url-loader'
2018-02-15 19:23:10 +01:00
}, {
test: /\.ts$/,
exclude: /node_modules/,
2018-02-15 19:26:59 +01:00
use: [{
loader: 'ts-loader',
options: {
2018-03-02 23:32:18 +01:00
happyPackMode: true,
2018-02-15 19:26:59 +01:00
configFile: __dirname + '/../src/web/app/tsconfig.json',
appendTsSuffixTo: [/\.vue$/]
}
}, {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
}
}, {
loader: 'replace',
query: {
search: faPattern.toString(),
replace: 'faReplacement'
}
}]
2018-02-15 19:23:10 +01:00
}]
},
2018-03-14 21:26:24 +01:00
plugins,
2017-11-13 10:05:35 +01:00
output,
resolve: {
extensions: [
2018-02-25 09:03:39 +01:00
'.js', '.ts', '.json'
2018-03-03 05:47:55 +01:00
],
alias: {
2018-03-14 21:26:24 +01:00
'const.styl': __dirname + '/src/web/const.styl'
2018-03-03 05:47:55 +01:00
}
2018-02-15 05:18:34 +01:00
},
2018-02-15 18:53:54 +01:00
resolveLoader: {
modules: ['node_modules', './webpack/loaders']
},
2018-03-14 21:26:24 +01:00
cache: true,
2018-03-15 12:33:28 +01:00
devtool: false, //'source-map',
2018-03-18 09:21:58 +01:00
mode: isProduction ? 'production' : 'development'
2017-05-16 17:00:56 +02:00
};
});