-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
90 lines (76 loc) · 2.4 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
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const argv = require('yargs').argv;
const paths = require('./build/paths');
// Set isProduction based on environment or argv.
let isProduction = process.env.NODE_ENV === 'production';
if (argv.production) {
isProduction = true;
}
/**
* Webpack configuration
* Run using "webpack" or "npm run build"
*/
module.exports = {
// Entry points locations.
entry: {
[`${paths.package.name}-css`]: `${__dirname}/${paths.scssEntry}`,
[`${paths.package.name}-js`]: `${__dirname}/${paths.jsEntry}`,
'admin_overrides': `${__dirname}/${paths.scssSrcDir}/admin/admin_overrides.scss`,
},
// (Output) bundle locations.
output: {
path: __dirname + '/' + paths.jsDir,
filename: '[name].js', // file
chunkFilename: '[name].bundle.js',
publicPath: '/static/bundles/',
},
// Plugins
plugins: [
new MiniCssExtractPlugin(),
],
// Modules
module: {
rules: [
// .js
{
test: /.js?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
// .scss
{
test: /\.(sa|sc|c)ss$/,
use: [
// Writes css files.
MiniCssExtractPlugin.loader,
// Loads CSS files.
{
loader: 'css-loader',
options: {
url: false
},
},
// Runs postcss configuration (postcss.config.js).
{
loader: 'postcss-loader'
},
// Compiles .scss to .css.
{
loader: 'sass-loader',
options: {
sassOptions: {
comments: false,
style: 'compressed'
},
sourceMap: argv.sourcemap
},
},
],
},
]
},
// Use --production to optimize output.
mode: isProduction ? 'production' : 'development',
// Use --sourcemap to generate sourcemap.
devtool: argv.sourcemap ? 'sourcemap' : false,
};