thelounge/webpack.config.js

113 lines
2.2 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");
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"),
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: [
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: [
2017-04-21 23:27:18 +02:00
["env", {
targets: {
browsers: "last 2 versions",
},
}],
],
},
},
2016-12-18 16:53:28 +01:00
},
{
test: /\.tpl$/,
include: [
path.resolve(__dirname, "client/views"),
],
2017-02-17 16:01:20 +01:00
use: {
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
],
},
},
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: [
2017-10-03 12:52:31 +02:00
new CopyPlugin([
{
2017-12-08 05:01:58 +01:00
from: "./node_modules/@fortawesome/fontawesome-free-webfonts/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
},
{ // TODO: Build css with postcss
from: "./client/css/*",
to: "css/[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
]),
// 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;