-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.js
executable file
·228 lines (221 loc) · 9 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
const path = require('path');
const chalk = require('chalk');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const WebappWebpackPlugin = require('webapp-webpack-plugin')
const WebpackNotifierPlugin = require('webpack-notifier');
const CompressionPlugin = require("compression-webpack-plugin");
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const { AureliaPlugin } = require('aurelia-webpack-plugin');
const { ProvidePlugin, BannerPlugin, DefinePlugin, IgnorePlugin } = require('webpack');
const { TsConfigPathsPlugin, CheckerPlugin } = require('awesome-typescript-loader');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const pkg = require('./package.json');
// config helpers:
const ensureArray = (config) => config && (Array.isArray(config) ? config : [config]) || []
const when = (condition, config, negativeConfig) =>
condition ? ensureArray(config) : ensureArray(negativeConfig)
// primary config:
const outDir = path.resolve(__dirname, 'dist');
const srcDir = path.resolve(__dirname, 'src/app');
const nodeModulesDir = path.resolve(__dirname, 'node_modules');
const baseUrl = '/';
const cssRules = [
{ loader: 'css-loader' },
{
loader: 'postcss-loader',
options: { plugins: () => [require('autoprefixer')({ browsers: ['last 2 versions'] })] }
},
{
loader: "sass-loader"
}
]
/**
* @return {webpack.Configuration}
*/
module.exports = ({ production, server, extractCss, coverage, platform, config, analyse } = {}) => {
const PLATFORM = platform || 'browser'; // possibilities browser, mobile
const CONFIG = config || 'development';
console.log('');
console.log(chalk.yellow('➜') + ' ' + chalk.white('NODE_ENV: ') + chalk.green.bold(process.env.NODE_ENV || ''));
console.log(chalk.yellow('➜') + ' ' + chalk.white('CONFIG: ') + chalk.green.bold(CONFIG || ''));
console.log(chalk.yellow('➜') + ' ' + chalk.white('PLATFORM: ') + chalk.green.bold(PLATFORM || ''));
console.log('');
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => production: ') + chalk.green.bold(production || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => server: ') + chalk.green.bold(server || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => extractCss: ') + chalk.green.bold(extractCss || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => coverage: ') + chalk.green.bold(coverage || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => platform: ') + chalk.green.bold(platform || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => config: ') + chalk.green.bold(config || 'false'));
console.log(chalk.yellow('➜') + ' ' + chalk.white('WPK => analyse: ') + chalk.green.bold(analyse || 'false'));
console.log('');
return ({
resolve: {
extensions: ['.ts', '.js'],
modules: [srcDir, 'node_modules'],
alias: {
'@fortawesome/fontawesome-free-solid$': '@fortawesome/fontawesome-free-solid/shakable.es.js'
}
},
devtool: production ? 'source-map' : 'cheap-module-eval-source-map',
entry: {
app: ['aurelia-bootstrapper'],
vendor: ['jquery', 'bootstrap', 'popper.js', 'moment', 'reflect-metadata', 'es6-promise', 'isomorphic-fetch'],
},
optimization: {
splitChunks: {
cacheGroups: {
commons: {
name: 'vendor',
chunks: 'all',
minChunks: 2,
enforce: true
}
}
},
minimizer: production ? [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true // set to true if you want JS source maps
}),
new OptimizeCSSAssetsPlugin({})
] : []
},
output: {
path: outDir,
publicPath: PLATFORM === 'mobile' ? '' : baseUrl,
filename: production ? '[name].[chunkhash].bundle.js' : '[name].[hash].bundle.js',
sourceMapFilename: production ? '[name].[chunkhash].bundle.map' : '[name].[hash].bundle.map',
chunkFilename: production ? '[name].[chunkhash].chunk.js' : '[name].[hash].chunk.js',
},
devServer: {
contentBase: outDir,
historyApiFallback: true
},
module: {
rules: [
{
test: /\.ts$/, enforce: 'pre', loader: 'tslint-loader'
},
// Waiting for PR https://github.com/niieani/aurelia-template-lint-webpack-loader/pull/3
// {
// test: /\.html$/i,
// enforce: 'pre',
// include: [srcDir],
// use: [{
// loader: 'aurelia-template-lint-webpack-loader',
// options: {
// emitErrors: production,
// failOnHint: production,
// typeChecking: true,
// reflectionOpts: {
// sourceFileGlob: './src/app/**/*.ts'
// }
// }
// }]
// },
// CSS required in JS/TS files should use the style-loader that auto-injects it into the website
// only when the issuer is a .js/.ts file, so the loaders are not applied inside html templates
{
test: /\.scss$/i,
// issuer: [{ not: [{ test: /\.html$/i }] }],
use: extractCss ? [
MiniCssExtractPlugin.loader,
...cssRules
] : ['style-loader', ...cssRules],
},
{
test: /\.css$/i,
issuer: [{ test: /\.html$/i }],
// CSS required in templates cannot be extracted safely
// because Aurelia would try to require it again in runtime
use: cssRules,
},
{
test: /\.html$/i, use: [{
loader: 'html-loader',
options: {
minimize: production
}
}]
},
{ test: /\.ts$/i, loader: 'awesome-typescript-loader', exclude: nodeModulesDir },
// exposes jQuery globally as $ and as jQuery:
{ test: require.resolve('jquery'), loader: 'expose-loader?$!expose-loader?jQuery' },
// embed small images and fonts as Data Urls and larger ones as files:
{ test: /\.(png|gif|jpg|cur)$/i, use: ['url-loader?limit=8192', 'img-loader'] },
{ test: /\.woff2(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'url-loader', options: { limit: 10000, mimetype: 'application/font-woff2' } },
{ test: /\.woff(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'url-loader', options: { limit: 10000, mimetype: 'application/font-woff' } },
// load these fonts normally, as files:
{ test: /\.(ttf|eot|svg|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/i, loader: 'file-loader' }
]
},
plugins: [
new AureliaPlugin({ root: '', src: './src/app', title: pkg.title, baseUrl: '/' }),
new ProvidePlugin({
'$': 'jquery',
'jQuery': 'jquery',
'window.jQuery': 'jquery',
Popper: ['popper.js', 'default'] // Bootstrap 4 Dependency.
}),
new TsConfigPathsPlugin(),
new CheckerPlugin(),
new HtmlWebpackPlugin({
template: './src/index.ejs',
minify: production ? {
removeComments: true,
collapseWhitespace: true,
minifyCSS: true
} : undefined,
metadata: {
title: pkg.title, server, baseUrl, description: pkg.description, version: pkg.version, author: pkg.author, platform: PLATFORM
},
}),
new IgnorePlugin(/^\.\/locale$/, /moment$/),
...when(extractCss, new MiniCssExtractPlugin({
filename: production ? '[contenthash].css' : '[id].css',
allChunks: true,
})),
...when(production, new BannerPlugin(
' @name ' + pkg.title + '\n' +
' @description ' + pkg.description + '\n\n' +
' @version ' + pkg.version + '\n' +
' @author ' + pkg.author + '\n' +
' @license ' + pkg.license + '\n'
)),
...when(production, new CompressionPlugin({
asset: "[path].gz[query]",
algorithm: "gzip",
test: /\.(js|html|css|eot|svg|ttf|woff2|woff)$/i,
threshold: 10240,
minRatio: 0.8
})),
...when(production, new WebappWebpackPlugin({
logo: path.resolve('icon.png'),
inject: true,
favicons: {
appName: pkg.title,
appDescription: pkg.description,
background: '#ddd',
theme_color: '#007bff'
}
})),
...when(analyse, new BundleAnalyzerPlugin()),
new WebpackNotifierPlugin({
title: pkg.title,
contentImage: path.resolve('icon.png')
}),
new DefinePlugin({
NAME: JSON.stringify(pkg.name),
VERSION: JSON.stringify(pkg.version),
PLATFORM: JSON.stringify(PLATFORM),
CONFIG: JSON.stringify(require(path.resolve('src', 'config', `${CONFIG}.json`)))
}),
new CaseSensitivePathsPlugin()
],
})
}