-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
138 lines (124 loc) · 3.36 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
const webpack = require('webpack')
const path = require('path')
const pkg = require('./package.json')
const compress = require('compression')
const BrowserSyncPlugin = require('browser-sync-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const year = new Date().getFullYear()
const contribs = ([pkg.author].concat(pkg.contributors || [])).map(c => c.name || '').join(', ')
const banner = `${pkg.name} - v${pkg.version}\n${pkg.homepage}\nCopyright (c) ${year} ${contribs}\nLicensed under the ${pkg.license}`
let bSync = new BrowserSyncPlugin({
host: 'localhost',
port: 3000,
server: {
baseDir: ['.'],
middleware: [compress()]
},
files: ['demo/*.*', 'src/*.*'],
notify: false,
startPath: '/demo'
})
let outputFile
module.exports = env => {
let mode = env.prod ? 'production' : 'development'
let plugins = []
if (env.prod) {
outputFile = '[name].min.js'
plugins.push(new webpack.BannerPlugin(banner))
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin
plugins.push(new BundleAnalyzerPlugin())
} else {
outputFile = '[name].js'
plugins.push(bSync)
}
plugins.push(
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[name].[id].css'
})
)
plugins.push(
new webpack.DefinePlugin({
PRODUCTION: JSON.stringify(env.prod),
LOG: JSON.stringify(!env.prod)
})
)
plugins.push(
new webpack.ProvidePlugin({
$: 'jquery'
})
)
let devtool = env.prod ? {} : { devtool: 'cheap-module-eval-source-map' }
let publicPath = '/build/'
let config = {
entry: {
'calendarium': './src/js/calendarium.js'
},
output: {
path: path.resolve(__dirname, 'dist/'),
publicPath,
filename: outputFile,
chunkFilename: env.prod
? 'calendarium.[name].min.js'
: 'calendarium.[name].js',
sourceMapFilename: '[file].map',
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
{
test: /(\.jsx|\.js)$/,
use: {
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', { useBuiltIns: 'usage', corejs: 3 }]],
plugins: [
'@babel/plugin-transform-runtime'
]
}
},
exclude: /(node_modules|bower_components)/
},
{
test: /(\.jsx|\.js)$/,
loader: 'eslint-loader',
exclude: /node_modules/
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'sass-loader',
options: {
outputStyle: 'compressed',
omitSourceMapUrl: true
}
}
]
},
{
test: /\.(jpe?g|png|ttf|eot|svg|woff(2)?)(\?[a-z0-9=&.]+)?$/,
use: 'base64-inline-loader?limit=1000&name=[name].[ext]'
}
]
},
resolve: {
modules: [path.resolve('./node_modules'), path.resolve('./src')],
extensions: ['.json', '.js', '.css'],
mainFiles: ['index']
},
plugins: plugins,
mode: mode,
optimization: {
usedExports: true
},
externals: {
jquery: 'jQuery'
}
}
return env.prod ? config : { ...config, ...devtool }
}