TeaWeb/webpack.config.ts

216 lines
7.7 KiB
TypeScript
Raw Normal View History

2020-03-31 13:19:53 +00:00
import * as ts from "typescript";
import * as fs from "fs";
import trtransformer from "./tools/trgen/ts_transformer";
import {exec} from "child_process";
import * as util from "util";
import LoaderIndexGenerator = require("./loader/IndexGenerator");
import {Configuration} from "webpack";
2020-03-31 13:19:53 +00:00
2020-03-27 22:36:14 +00:00
const path = require('path');
2020-03-30 23:27:59 +00:00
const webpack = require("webpack");
2020-03-27 22:36:14 +00:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
2020-03-30 23:27:59 +00:00
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const ManifestGenerator = require("./webpack/ManifestPlugin");
const WorkerPlugin = require('worker-plugin');
2020-03-31 13:19:53 +00:00
const TerserPlugin = require('terser-webpack-plugin');
2020-03-30 23:27:59 +00:00
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2020-03-27 22:36:14 +00:00
export let isDevelopment = process.env.NODE_ENV === 'development';
console.log("Webpacking for %s (%s)", isDevelopment ? "development" : "production", process.env.NODE_ENV || "NODE_ENV not specified");
const generate_definitions = async (target: string) => {
const git_rev = fs.readFileSync(path.join(__dirname, ".git", "HEAD")).toString();
let version;
if(git_rev.indexOf("/") === -1)
version = (git_rev || "0000000").substr(0, 7);
else
version = fs.readFileSync(path.join(__dirname, ".git", git_rev.substr(5).trim())).toString().substr(0, 7);
let timestamp;
try {
const { stdout } = await util.promisify(exec)("git show -s --format=%ct");
timestamp = parseInt(stdout.toString());
if(isNaN(timestamp)) throw "failed to parse timestamp '" + stdout.toString() + "'";
} catch (error) {
console.error("Failed to get commit timestamp: %o", error);
throw "failed to get commit timestamp";
}
return {
"__build": {
target: JSON.stringify(target),
mode: JSON.stringify(isDevelopment ? "debug" : "release"),
version: JSON.stringify(version),
timestamp: timestamp,
entry_chunk_name: JSON.stringify(target === "web" ? "shared-app" : "client-app")
} as BuildDefinitions
} as any;
};
const isLoaderFile = (file: string) => {
if(file.startsWith(__dirname)) {
const path = file.substr(__dirname.length).replace(/\\/g, "/");
if(path.startsWith("/loader/")) {
return true;
}
}
return false;
};
export const config = async (target: "web" | "client"): Promise<Configuration> => { return {
entry: {
"loader": "./loader/app/index.ts",
"modal-external": "./shared/js/ui/react-elements/external-modal/PopoutEntrypoint.ts",
"devel-main": "./shared/js/devel_main.ts"
},
2020-03-31 13:19:53 +00:00
devtool: isDevelopment ? "inline-source-map" : undefined,
mode: isDevelopment ? "development" : "production",
2020-03-27 22:36:14 +00:00
plugins: [
2020-03-30 23:27:59 +00:00
new CleanWebpackPlugin(),
2020-03-27 22:36:14 +00:00
new MiniCssExtractPlugin({
filename: isDevelopment ? '[name].css' : '[name].[hash].css',
chunkFilename: isDevelopment ? '[id].css' : '[id].[hash].css'
2020-03-30 11:44:18 +00:00
}),
2020-03-30 23:27:59 +00:00
new ManifestGenerator({
file: path.join(__dirname, "dist/manifest.json"),
base: __dirname
2020-03-30 23:27:59 +00:00
}),
new WorkerPlugin(),
//new BundleAnalyzerPlugin(),
isDevelopment ? undefined : new webpack.optimize.AggressiveSplittingPlugin({
2020-03-31 13:19:53 +00:00
minSize: 1024 * 8,
maxSize: 1024 * 128
}),
2020-04-09 21:09:59 +00:00
new webpack.DefinePlugin(await generate_definitions(target)),
new LoaderIndexGenerator({
buildTarget: target,
2020-04-09 21:09:59 +00:00
output: path.join(__dirname, "dist/index.html"),
isDevelopment: isDevelopment
2020-04-09 21:09:59 +00:00
})
].filter(e => !!e),
2020-03-27 22:36:14 +00:00
module: {
rules: [
{
test: /\.(s[ac]|c)ss$/,
2020-03-27 22:36:14 +00:00
loader: [
2020-04-09 14:14:54 +00:00
'style-loader',
/*
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: true,
},
},
*/
2020-03-27 22:36:14 +00:00
{
loader: 'css-loader',
options: {
modules: {
mode: "local",
2020-04-18 20:45:18 +00:00
localIdentName: isDevelopment ? "[path][name]__[local]--[hash:base64:5]" : "[hash:base64]",
},
2020-03-27 22:36:14 +00:00
sourceMap: isDevelopment
}
},
{
loader: 'sass-loader',
options: {
sourceMap: isDevelopment
}
}
]
},
{
test: (module: string) => module.match(/\.tsx?$/) && !isLoaderFile(module),
2020-03-27 22:36:14 +00:00
exclude: /node_modules/,
2020-03-27 22:36:57 +00:00
loader: [
{
loader: 'ts-loader',
options: {
context: __dirname,
colors: true,
getCustomTransformers: (prog: ts.Program) => {
2020-03-31 13:19:53 +00:00
return {
before: [trtransformer(prog, {
optimized: false,
verbose: true,
target_file: path.join(__dirname, "dist", "translations.json")
})]
2020-03-31 13:19:53 +00:00
};
},
transpileOnly: isDevelopment
2020-03-27 22:36:57 +00:00
}
},
{
loader: "./webpack/DevelBlocks.js",
options: {
enabled: true
}
2020-03-27 22:36:57 +00:00
}
]
},
{
test: (module: string) => module.match(/\.tsx?$/) && isLoaderFile(module),
exclude: /(node_modules|bower_components)/,
loader: [
{
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"] //Preset used for env setup
}
},
{
loader: "ts-loader",
options: {
transpileOnly: true
}
}
]
},
{
test: /\.was?t$/,
loader: [
"./webpack/WatLoader.js"
]
},
{
test: /\.wasm$/,
type: 'javascript/auto',
loader: 'file-loader',
options: {
/* the public path will already be set by emscripten base path */
publicPath: './'
}
},
{
test: /\.svg$/,
loader: 'svg-inline-loader'
2020-03-30 23:27:59 +00:00
}
2020-03-27 22:36:14 +00:00
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', ".scss", ".css"],
2020-07-17 21:56:20 +00:00
alias: {
"vendor/xbbcode": path.resolve(__dirname, "vendor/xbbcode/src")
},
2020-03-27 22:36:14 +00:00
},
externals: [
{"tc-loader": "window loader"}
],
2020-03-27 22:36:14 +00:00
output: {
2020-04-09 21:09:59 +00:00
filename: isDevelopment ? "[name].[contenthash].js" : "[contenthash].js",
chunkFilename: isDevelopment ? "[name].[contenthash].js" : "[contenthash].js",
2020-03-27 22:36:14 +00:00
path: path.resolve(__dirname, 'dist'),
2020-03-30 23:27:59 +00:00
publicPath: "js/"
2020-03-27 22:36:14 +00:00
},
optimization: {
splitChunks: {
2020-08-05 16:29:33 +00:00
chunks: "all"
},
2020-03-31 13:19:53 +00:00
minimize: !isDevelopment,
minimizer: [new TerserPlugin()]
2020-03-27 22:36:14 +00:00
}
}};