-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.minimal.js
62 lines (57 loc) · 1.82 KB
/
webpack.minimal.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
const path = require('path');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const {InlineAssetsPlugin} = require('./InlineAssetsPlugin')
const {merge} = require('webpack-merge');
const commonConfig = require('./webpack.common');
const config = {
name: 'Minimal Theme',
output: {
path: path.resolve(__dirname, 'bin'),
filename: 'minimal/assets/js/main.js'
},
module: {
rules: [
{
test: /\.(png|svg)$/,
loader: 'url-loader',
},
]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'minimal/assets/css/main.css',
}),
new CopyPlugin({
patterns: [
{
context: path.resolve(__dirname, 'src/default'),
from: 'partials/**/*.hbs',
to: path.resolve(__dirname, 'bin/minimal'),
},
{
context: path.resolve(__dirname, 'src/minimal'),
from: '**/*.hbs',
to: path.resolve(__dirname, 'bin/minimal'),
force: true, // override default partials
},
],
}),
new InlineAssetsPlugin({
patterns: [
{
from: 'minimal/assets/js/main.js',
to: 'minimal/layouts/default.hbs',
pattern: '{{ JS }}'
},
{
from: 'minimal/assets/css/main.css',
to: 'minimal/layouts/default.hbs',
pattern: '{{ CSS }}'
}
]
}),
]
}
module.exports = merge(commonConfig, config);