-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
104 lines (92 loc) · 2.49 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
/*
If you need Vue, add this in your dependencies:
"vue": "^2.6.12",
"vue-router": "^3.4.3"
And add this in devDependencies:
"@vue/test-utils": "^1.1.0",
"babel-jest": "^26.3.0",
"jest": "^26.4.2",
"puppeteer": "^5.3.1",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12"
Then uncomment all commented lines below
*/
// const { VueLoaderPlugin } = require('vue-loader');
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 cssPath = './assets/css';
const jsPath = './assets/js';
const shopPath = './woocommerce';
const outputPath = '_dist';
const localDomain = 'http://lab.test/';
const entryPoints = {
app: `${jsPath}/app.js`,
gutenberg: `${cssPath}/gutenberg.sass`,
'my-editor': `${jsPath}/my-editor.js`,
'my-admin': `${jsPath}/my-admin.js`,
shop: `${shopPath}/js/shop.js`,
'shop-editor': `${shopPath}/css/shop-editor.sass`,
'shop-admin': `${shopPath}/css/shop-admin.sass`,
};
module.exports = {
entry: entryPoints,
output: {
path: path.resolve(__dirname, outputPath),
filename: '[name].js',
},
plugins: [
// new VueLoaderPlugin(),
new BrowserSyncPlugin({
proxy: localDomain,
files: [`${outputPath}/*.css`],
injectCss: true,
}, { reload: false }),
new MiniCssExtractPlugin({
filename: '[name].css',
}),
new DependencyExtractionWebpackPlugin({
injectPolyfill: true,
}),
],
module: {
rules: [
// {
// test: /\.vue$/,
// use: 'vue-loader',
// },
{
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'),
],
},
},
],
},
],
},
};