thelounge/webpack.config.js

139 lines
2.8 KiB
JavaScript
Raw Normal View History

2016-12-18 16:53:28 +01:00
"use strict";
const webpack = require("webpack");
const path = require("path");
2017-10-03 12:52:31 +02:00
const CopyPlugin = require("copy-webpack-plugin");
2018-03-21 13:13:52 +01:00
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const config = {
2018-01-25 19:32:28 +01:00
mode: process.env.NODE_ENV === "production" ? "production" : "development",
2016-12-18 16:53:28 +01:00
entry: {
"js/bundle.js": path.resolve(__dirname, "client/js/lounge.js"),
2018-03-21 13:13:52 +01:00
"css/style": path.resolve(__dirname, "client/css/style.css"),
2016-12-18 16:53:28 +01:00
},
devtool: "source-map",
output: {
2017-10-03 12:52:31 +02:00
path: path.resolve(__dirname, "public"),
filename: "[name]",
publicPath: "/",
2016-12-18 16:53:28 +01:00
},
module: {
2017-02-17 16:01:20 +01:00
rules: [
2018-03-21 13:13:52 +01:00
{
test: /\.css$/,
include: [
path.resolve(__dirname, "client"),
],
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {
url: false,
minimize: process.env.NODE_ENV === "production",
},
},
],
},
2016-12-18 16:53:28 +01:00
{
test: /\.js$/,
include: [
path.resolve(__dirname, "client"),
],
2017-02-17 16:01:20 +01:00
use: {
loader: "babel-loader",
options: {
presets: [
2018-08-29 09:04:38 +02:00
["@babel/env", {
2017-04-21 23:27:18 +02:00
targets: {
2018-06-16 18:56:16 +02:00
browsers: [
"last 1 year",
"firefox esr",
],
},
}],
],
},
},
2016-12-18 16:53:28 +01:00
},
{
test: /\.tpl$/,
include: [
path.resolve(__dirname, "client/views"),
],
2018-06-01 20:31:52 +02:00
use: [{
2017-02-17 16:01:20 +01:00
loader: "handlebars-loader",
options: {
helperDirs: [
path.resolve(__dirname, "client/js/libs/handlebars"),
2017-02-17 16:01:20 +01:00
],
extensions: [
".tpl",
2017-02-17 16:01:20 +01:00
],
},
2018-06-01 20:31:52 +02:00
}, {
loader: "html-minifier-loader",
options: {
ignoreCustomFragments: [
/{{[\s\S]*?}}/,
],
},
}],
2016-12-18 16:53:28 +01:00
},
],
2016-12-18 16:53:28 +01:00
},
2018-01-25 19:32:28 +01:00
optimization: {
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: "js/bundle.vendor.js",
chunks: "all",
},
},
},
},
2017-03-19 09:02:39 +01:00
externals: {
json3: "JSON", // socket.io uses json3.js, but we do not target any browsers that need it
},
2016-12-18 16:53:28 +01:00
plugins: [
2018-03-21 13:13:52 +01:00
new MiniCssExtractPlugin(),
2017-10-03 12:52:31 +02:00
new CopyPlugin([
{
from: "./node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff*",
to: "fonts/[name].[ext]",
2017-10-03 12:52:31 +02:00
},
{
from: "./client/js/loading-error-handlers.js",
to: "js/[name].[ext]",
2017-10-03 12:52:31 +02:00
},
{
2017-10-03 12:52:31 +02:00
from: "./client/*",
to: "[name].[ext]",
ignore: "index.html.tpl",
2017-10-03 12:52:31 +02:00
},
{
from: "./client/audio/*",
to: "audio/[name].[ext]",
2017-10-03 12:52:31 +02:00
},
{
from: "./client/img/*",
to: "img/[name].[ext]",
2017-10-03 12:52:31 +02:00
},
{
from: "./client/themes/*",
to: "themes/[name].[ext]",
2017-10-03 12:52:31 +02:00
},
{
from: "./node_modules/primer-tooltips/build/build.css",
to: "css/primer-tooltips.[ext]",
},
2017-10-03 12:52:31 +02:00
]),
2018-09-20 14:00:17 +02:00
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
// socket.io uses debug, we don't need it
new webpack.NormalModuleReplacementPlugin(/debug/, path.resolve(__dirname, "scripts/noop.js")),
],
2016-12-18 16:53:28 +01:00
};
module.exports = config;