-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.js
113 lines (112 loc) · 2.63 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
const path = require('node:path')
const MiniExtractPlugin = require('mini-css-extract-plugin')
const RenameFilePlugin = require('rename-webpack-plugin')
module.exports = {
mode: 'production',
context: path.join(__dirname, 'docs/source'),
entry: {
'docs-css': './stylesheets/docs/docs.scss',
'docs-debug-js': './javascripts/docs/docs-debug.js',
'docs-index-js': './javascripts/docs/docs-index.js',
'example-android-css': './stylesheets/example-android/example.scss',
'example-android-js': './javascripts/example-android/example.js',
'example-marketing-css': './stylesheets/example-marketing/example.scss',
'example-woocommerce-css': './stylesheets/example-woocommerce/example.scss',
},
module: {
rules: [
{
test: /\.js$/,
exclude: path.join(__dirname, 'node_modules'),
use: {
loader: 'babel-loader',
options: {
presets: [
'@babel/preset-env',
],
plugins: [
'@babel/plugin-transform-runtime',
],
},
},
},
{
test: /\.scss$/,
exclude: path.join(__dirname, 'node_modules'),
use: [
{
loader: MiniExtractPlugin.loader,
},
{
loader: 'css-loader',
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
require('autoprefixer'),
],
},
},
},
{
loader: 'sass-loader',
options: {
sassOptions: {
outputStyle: 'compressed',
},
},
},
],
},
{
test: /\.(jpg|png|svg)$/i,
use: [
{
loader: 'url-loader',
},
],
},
{
test: /\.sketchpalette$/,
use: 'raw-loader',
},
],
},
output: {
path: path.join(__dirname, 'docs/dist/assets'),
filename: '[name].js',
},
plugins: [
new MiniExtractPlugin({
filename: '[name].css',
}),
new RenameFilePlugin({
originNameReg: /(.*)-css.css/,
targetName: '$1.css',
}),
new RenameFilePlugin({
originNameReg: /(.*)-js.js/,
targetName: '$1.js',
}),
],
stats: {
entrypoints: false,
modules: false,
warnings: false,
},
devServer: {
port: 3003,
static: {
directory: path.join(__dirname, 'docs/dist'),
},
devMiddleware: {
writeToDisk: true,
},
},
performance: {
hints: false,
},
ignoreWarnings: [_ => true],
}