-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
133 lines (119 loc) · 3.79 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
const path = require('path')
const webpack = require('webpack')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const CssExtractPlugin = require('mini-css-extract-plugin')
const ESLintPlugin = require('eslint-webpack-plugin')
const svgToDataURI = require('mini-svg-data-uri')
const { optimize: optimizeSvg } = require('svgo')
const commonEnv = require('./webpack/common-env')
const IS_PROD = commonEnv.JEKYLL_ENV === 'production'
const DIST_PATH = local('content/home-assets')
const prodOutput = {
path: DIST_PATH,
publicPath: '/home-assets/',
filename: '[name].min.js',
sourceMapFilename: '[file].map',
}
const devOutput = {
path: DIST_PATH,
publicPath: '/home-assets/',
filename: '[name].js',
}
const { rule: cssLoadRule, plugin: cssLoadPlugin } = getCssLoadConfig()
/**
* @type import("webpack").Configuration
*/
module.exports = {
mode: IS_PROD ? 'production' : 'development',
output: IS_PROD ? prodOutput : devOutput,
entry: {
'cs-homepage': local('src/js/index.ts'),
},
resolve: {
extensions: ['.ts', '.js'],
},
devtool: IS_PROD ? 'source-map' : 'inline-source-map',
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'ts-loader',
options: {
compilerOptions: {
noEmit: false,
},
},
},
{
test: /\.scss$/,
use: [
...cssLoadRule,
{
loader: 'css-loader',
options: { importLoaders: 1, sourceMap: true },
},
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'sass-loader', options: { sourceMap: true } },
],
},
{
test: /\.svg$/,
include: [local('src/buildtime-assets')],
type: 'asset/inline',
generator: {
dataUrl: (content) => {
content = content.toString()
if (IS_PROD) {
content = optimizeSvg(content, {
multipass: true,
}).data
}
return svgToDataURI(content)
},
},
},
],
},
externals: {
'@sentry/browser': 'Sentry',
},
plugins: [
new ESLintPlugin({ extensions: ['js', 'ts'] }),
new CleanWebpackPlugin(),
new CopyWebpackPlugin({
patterns: [
// Image assets, etc.
// TODO: Might be good to run these through image-optimization passes
{
context: local('src/assets'),
from: '**/*',
to: DIST_PATH,
},
],
}),
new webpack.DefinePlugin({
'process.env': {
JEKYLL_ENV: JSON.stringify(commonEnv.JEKYLL_ENV),
RELEASE_VERSION: JSON.stringify(commonEnv.RELEASE_VERSION),
SENTRY_SDK_VERSION: JSON.stringify(
commonEnv.SENTRY_SDK_VERSION,
),
},
}),
...cssLoadPlugin,
],
}
function getCssLoadConfig() {
if (!IS_PROD) {
return { rule: [{ loader: 'style-loader' }], plugin: [] }
}
return {
rule: [{ loader: CssExtractPlugin.loader }],
plugin: [new CssExtractPlugin({ filename: '[name].min.css' })],
}
}
function local(...components) {
return path.resolve(__dirname, ...components)
}