-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
101 lines (98 loc) · 2.71 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* eslint-disable */
var path = require("path");
var webpack = require("webpack");
var copyPlugin = require("copy-webpack-plugin");
var miniCssExtractPlugin = require("mini-css-extract-plugin");
var htmlPlugin = require("html-webpack-plugin");
const isWebpackDevServer = process.argv.some(
a => path.basename(a) === "webpack-dev-server"
);
const isWatch = process.argv.some(a => a === "--watch");
module.exports = {
mode: process.env.BUILD_MODE || "production",
devtool:
process.env.BUILD_MODE == "development" ? "inline-source-map" : "none",
entry: ["./src/Main.purs"],
output: {
path: path.join(__dirname, "/dist"),
filename: "bundle.js",
sourceMapFilename: "index_bundle.js.map"
},
devServer: {
historyApiFallback: true,
contentBase: path.join(__dirname, "dist"),
port: 8082,
hot: true
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new copyPlugin([
{ from: "html/index.html", to: "." }
]),
new miniCssExtractPlugin({
moduleFilename: ({ name }) => `stylesheets/${name}.css`
}),
new htmlPlugin({
template: "html/index.ejs",
inject: false,
templateParameters: (compilation, assets, assetTags, options) => {
return {
htmlWebpackPlugin: {
files: {
js: assets.js,
css: assets.css
}
}
};
}
})
],
module: {
rules: [
{
test: /\.purs$/,
exclude: /node_modules/,
use: {
loader: "purs-loader",
options: {
src: [".spago/*/*/src/**/*.purs", "src/**/*.purs"],
bundle: false,
watch: isWebpackDevServer || isWatch,
pscIde: true,
...(process.env.CONSOLE_PURS_IDE_PORT
? {
pscIdeArgs: { port: process.env.CONSOLE_PURS_IDE_PORT },
pscIdeServerArgs: { port: process.env.CONSOLE_PURS_IDE_PORT },
pscIdeClientArgs: { port: process.env.CONSOLE_PURS_IDE_PORT }
}
: {}),
...(process.env.CONSOLE_PURS_OUTPUT
? {
output: path.join(__dirname, process.env.CONSOLE_PURS_OUTPUT)
}
: {})
}
}
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
},
{
test: /.s[ac]ss/,
include: path.join(__dirname, "./stylesheets"),
use: [
miniCssExtractPlugin.loader,
"css-loader",
{
loader: "sass-loader",
options: {
prependData:
"$uri_prefix: " + process.env.CONSOLE_RESOURCES_PREFIX + ";"
}
}
]
}
]
}
};