-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
148 lines (141 loc) · 4.79 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const globImporter = require('node-sass-glob-importer');
// Conditionally return a list of plugins to use based on the current environment.
function getPlugins() {
var plugins = [];
// Always expose NODE_ENV to webpack, you can now use `process.env.NODE_ENV`
// inside your code for any environment checks; UglifyJS will automatically
// drop any unreachable code.
plugins.push(new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}
}));
// If we decide to bundle js we'll need to enable this if we want to use jQuery or
// Drupal.behaviors
/*
plugins.push(new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
Drupal: 'Drupal',
drupalSettings: 'drupalSettings',
}));
*/
plugins.push(new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: 'css/[name].bundle.css'
}));
// Conditionally add plugins for Production builds.
// Enable if we bundle JS
/*if (process.env.NODE_ENV === 'production') {
// Uglify JS
plugins.push(new UglifyJsPlugin({
cache: true,
parallel: true,
uglifyOptions: {
warnings: true,
mangle: true,
output: { comments: false }
},
sourceMap: false
}));
}*/
return plugins;
}
module.exports = {
devtool: 'source-map',
entry: {
/**
* At some point we may need to introduce 'babel-polyfill' to the base entry below if we intend to use more
* advanced ES2015+ built-ins like Promise or WeakMap, static methods like Array.from or Object.assign.
*
* See https://babeljs.io/docs/usage/polyfill/
*/
base: ['./source/scss/styles.scss']
},
mode: process.env.NODE_ENV || 'development',
module: {
rules: [
// Enable if we bundle js.
// https://webpack.js.org/loaders/eslint-loader/
/*{
test: /\.js$/,
enforce: 'pre', // preload the eslint loader
exclude: [path.resolve(__dirname, 'node_modules/'),path.resolve(__dirname, 'holly-hunt-portal/')],
use: {
loader: 'eslint-loader',
options: {
presets: ['env']
}
}
},
{
test: /\.js$/,
exclude: [path.resolve(__dirname, 'node_modules/'),path.resolve(__dirname, 'holly-hunt-portal/')],
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},*/
{
test: /\.css$/,
exclude: [path.resolve(__dirname, 'node_modules/')],
use: [
'style-loader',
'css-loader'
]
},
{
test: /\.scss$/,
exclude: [path.resolve(__dirname, 'node_modules/')],
use: [
{ loader: MiniCssExtractPlugin.loader },
{ loader: 'css-loader', options: { importLoaders: 1, sourceMap: true } },
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'sass-loader',
options: {
precision: 8,
sourceMap: true,
importer: globImporter()
}
}
]
},
{
test: /\.(png|jpe?g|gif|svg)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'css/images',
publicPath: 'images',
},
},
],
},
{
test: /\.(otf|woff)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'css/fonts',
publicPath: 'fonts',
},
},
],
},
]
},
output: {
filename: 'js/[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
plugins: getPlugins()
};