This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
forked from folio-org/stripes-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.cli.transpile.js
112 lines (107 loc) · 2.58 KB
/
webpack.config.cli.transpile.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
// Top level default Webpack configuration used for transpiling individual modules
// before publishing
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { EsbuildPlugin } = require('esbuild-loader');
const { processExternals } = require('./webpack/utils');
const { defaultExternals } = require('./consts');
const config = {
mode: 'production',
devtool: 'source-map',
entry: path.resolve('./index.js'),
output: {
library: {
type: 'umd',
},
path: path.resolve('./dist'),
filename: 'index.js',
umdNamedDefine: true,
},
module: {
rules: [
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
loader: 'esbuild-loader',
options: {
loader: 'tsx',
jsx: 'automatic',
},
},
{
test: /\.(woff2?)$/,
type: 'asset/resource',
generator: {
filename: './fonts/[name].[contenthash].[ext]',
},
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[local]---[hash:base64:5]',
},
sourceMap: true,
importLoaders: 1,
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
config: path.resolve(__dirname, 'postcss.config.js'),
},
sourceMap: true,
},
},
],
},
{
test: /\.(jpg|jpeg|gif|png|ico)$/,
type: 'asset/resource',
generator: {
filename: './img/[name].[contenthash].[ext]',
},
},
{
test: /\.svg$/,
use: [{
loader: 'url-loader',
options: {
esModule: false,
},
}]
},
{
test: /\.js.map$/,
enforce: "pre",
use: ['source-map-loader'],
}
]
},
// Set default externals. These can be extended by individual modules.
externals: processExternals(defaultExternals),
};
config.optimization = {
mangleWasmImports: true,
minimizer: [
new EsbuildPlugin({
css: true,
}),
],
};
config.plugins = [
new MiniCssExtractPlugin({ filename: 'style.css', ignoreOrder: false }),
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
new webpack.EnvironmentPlugin(['NODE_ENV']),
];
module.exports = config;