forked from hrsetyono/edje-wp-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
80 lines (74 loc) · 2.28 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
const DependencyExtractionWebpackPlugin = require('@wordpress/dependency-extraction-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
const path = require('path');
const outputPath = 'dist';
const entryPoints = {
'px-icon': './module-block-icon/src/index.jsx',
'h-icon': './module-block-icon/v1/index.jsx',
'px-faq': './module-block-faq/src/index.jsx',
'px-block-quote': './module-classic-quote/src/index.jsx',
'px-block-list': './module-classic-list/src/index.jsx',
'px-gutenberg': './module-gutenberg/src/px-gutenberg.js',
'px-classic-editor': './module-gutenberg/src/px-classic-editor.scss',
'h-comment': './module-comment/src/h-comment.js',
'h-admin': './module-modify/src/h-admin.sass',
'h-widgets': './module-widgets/src/h-widgets.sass',
'h-menu-admin': './module-menu/src/h-menu-admin.js',
'px-dark-mode': './module-widgets-dark-mode/src/script.js',
'px-dark-mode-head': './module-widgets-dark-mode/src/script-head.js',
};
module.exports = {
entry: entryPoints,
output: {
publicPath: '',
path: path.resolve(__dirname, outputPath),
filename: '[name].js',
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css',
}),
new DependencyExtractionWebpackPlugin({
injectPolyfill: true,
}),
new BrowserSyncPlugin({
proxy: 'http://flexiclasses.test/',
files: [`${outputPath}/*.css`],
injectCss: true,
}, { reload: false }),
],
module: {
rules: [
{
test: /\.s?[ac]ss$/i,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
],
},
{
test: /\.(jpg|jpeg|png|gif|woff|woff2|eot|ttf|svg)$/i,
use: 'url-loader?limit=1024',
},
{
test: /\.jsx$/i,
use: [
require.resolve('thread-loader'),
{
loader: require.resolve('babel-loader'),
options: {
cacheDirectory: process.env.BABEL_CACHE_DIRECTORY || true,
babelrc: false,
configFile: false,
presets: [
require.resolve('@wordpress/babel-preset-default'),
],
},
},
],
},
],
},
};