-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.common.js
69 lines (63 loc) · 1.55 KB
/
webpack.common.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
'use strict';
var fs = require('fs');
var path = require('path');
var MiniCssExtractPlugin = require('mini-css-extract-plugin');
var { merge } = require('webpack-merge');
// asset override for eon
// currently works by using project assets if [project]/src/js/main.js exists
// otherwise uses theme assets
// will need to improve this approach
var _eonPath;
if (fs.existsSync(path.resolve(__dirname, '../../src/js/main.js'))) {
console.log('==> eon: using *project* assets');
_eonPath = path.resolve(__dirname, '../../src');
} else {
console.log('==> eon: using *theme* assets');
_eonPath = path.resolve(__dirname, './src');
}
function eonPath(p) {
return path.join(_eonPath, p);
}
var config = {
entry: {
main: eonPath('js/main.js')
},
output: {
path: path.resolve(__dirname, '../../static'),
filename: `[name].js`
},
module: {
rules: [
{
test: /\.s[ac]ss$/i,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
'sass-loader'
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: `style.css`
})
],
resolve: {
alias: {
bulma: path.resolve(__dirname, 'node_modules/bulma'),
'sass-mediaqueries': path.resolve(
__dirname,
'node_modules/sass-mediaqueries/_media-queries.scss'
)
}
}
};
if (fs.existsSync(path.resolve(__dirname, '../../webpack.common.js'))) {
config = merge(
config,
require(path.resolve(__dirname, '../../webpack.common.js'))
);
}
module.exports = config;