meta-lightbox/webpack.config.js

308 lines
7.6 KiB
JavaScript
Raw Normal View History

2020-03-23 19:10:33 +01:00
const SOURCEDIR = './src';
const COMPRESS = false;
2019-11-25 06:59:54 +01:00
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const path = require('path');
2020-03-23 19:10:33 +01:00
const filesystem = require('fs');
2019-11-25 06:59:54 +01:00
const autoprefixer = require('autoprefixer');
2020-03-23 19:10:33 +01:00
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
2019-11-25 06:59:54 +01:00
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
2020-03-23 19:10:33 +01:00
const ImageminPlugin = require('imagemin-webpack');
const ImageSpritePlugin = require('@a2nt/image-sprite-webpack-plugin');
2019-11-25 06:59:54 +01:00
const plugins = [
new webpack.DefinePlugin({
'process.env': {
2020-03-23 19:10:33 +01:00
NODE_ENV: JSON.stringify('production'),
},
2019-11-25 06:59:54 +01:00
}),
2020-03-23 19:10:33 +01:00
new HardSourceWebpackPlugin(),
2019-11-25 06:59:54 +01:00
new webpack.LoaderOptionsPlugin({
minimize: COMPRESS,
2020-03-23 19:10:33 +01:00
debug: false,
2019-11-25 06:59:54 +01:00
}),
new ExtractTextPlugin({
filename: 'css/[name].css',
2020-03-23 19:10:33 +01:00
allChunks: true,
2019-11-25 06:59:54 +01:00
}),
/**/
new HtmlWebpackPlugin({
2020-03-23 19:10:33 +01:00
template: './src/index.html',
2019-11-25 06:59:54 +01:00
}),
];
if (COMPRESS) {
2020-03-23 19:10:33 +01:00
plugins.push(
new OptimizeCssAssetsPlugin({
//assetNameRegExp: /\.optimize\.css$/g,
cssProcessor: require('cssnano'),
cssProcessorPluginOptions: {
preset: ['default'],
},
cssProcessorOptions: {
zindex: true,
cssDeclarationSorter: true,
reduceIdents: false,
mergeIdents: true,
mergeRules: true,
mergeLonghand: true,
discardUnused: true,
discardOverridden: true,
discardDuplicates: true,
2019-11-25 06:59:54 +01:00
discardComments: {
2020-03-23 19:10:33 +01:00
removeAll: true,
},
},
canPrint: true,
}),
);
plugins.push(
new ImageminPlugin({
bail: false, // Ignore errors on corrupted images
cache: true,
filter: (source, sourcePath) => {
if (source.byteLength < 512000) {
return false;
2019-11-25 06:59:54 +01:00
}
2020-03-23 19:10:33 +01:00
return true;
},
imageminOptions: {
plugins: [
['gifsicle', { interlaced: true }],
['jpegtran', { progressive: true }],
['optipng', { optimizationLevel: 5 }],
[
'svgo',
{
plugins: [
{
removeViewBox: false,
},
],
},
],
],
},
}),
);
plugins.push(
new ImageSpritePlugin({
exclude: /exclude|original|default-|icons|sprite/,
commentOrigin: false,
compress: true,
extensions: ['png'],
indent: '',
log: true,
//outputPath: path.join(__dirname, conf.APPDIR, conf.DIST),
outputFilename: 'img/sprite-[hash].png',
padding: 0,
}),
);
2019-11-25 06:59:54 +01:00
}
2020-03-23 19:10:33 +01:00
const includes = {
app: './src/js/index.js',
};
2019-11-25 06:59:54 +01:00
module.exports = {
2020-03-23 19:10:33 +01:00
entry: includes,
2019-11-25 06:59:54 +01:00
output: {
path: path.resolve(__dirname, 'dist'),
2020-03-23 19:10:33 +01:00
filename: path.join('js', '[name].js'),
publicPath: path.resolve(__dirname, 'dist'),
2019-11-25 06:59:54 +01:00
},
2020-03-23 19:10:33 +01:00
devtool: COMPRESS ? '' : 'source-map',
2019-11-25 06:59:54 +01:00
externals: {
2020-03-23 19:10:33 +01:00
jquery: 'jQuery',
2019-11-25 06:59:54 +01:00
},
optimization: {
namedModules: true, // NamedModulesPlugin()
2020-03-23 19:10:33 +01:00
splitChunks: {
// CommonsChunkPlugin()
2019-11-25 06:59:54 +01:00
name: 'vendor',
2020-03-23 19:10:33 +01:00
minChunks: 2,
2019-11-25 06:59:54 +01:00
},
noEmitOnErrors: true, // NoEmitOnErrorsPlugin
concatenateModules: true, //ModuleConcatenationPlugin
minimizer: [
new TerserPlugin({
terserOptions: {
parse: {
2020-03-23 19:10:33 +01:00
// we want terser to parse ecma 8 code. However, we don't want it
// to apply any minfication steps that turns valid ecma 5 code
// into invalid ecma 5 code. This is why the 'compress' and 'output'
// sections only apply transformations that are ecma 5 safe
// https://github.com/facebook/create-react-app/pull/4234
2019-11-25 06:59:54 +01:00
ecma: 8,
},
2020-03-23 19:10:33 +01:00
compress: {
ecma: 5,
warnings: false,
// Disabled because of an issue with Uglify breaking seemingly valid code:
// https://github.com/facebook/create-react-app/issues/2376
// Pending further investigation:
// https://github.com/mishoo/UglifyJS2/issues/2011
comparisons: false,
},
mangle: {
safari10: true,
},
2019-11-25 06:59:54 +01:00
output: {
ecma: 5,
2020-03-23 19:10:33 +01:00
comments: false,
// Turned on because emoji and regex is not minified properly using default
// https://github.com/facebook/create-react-app/issues/2488
ascii_only: true,
2019-11-25 06:59:54 +01:00
},
},
2020-03-23 19:10:33 +01:00
// Use multi-process parallel running to improve the build speed
// Default number of concurrent runs: os.cpus().length - 1
parallel: true,
// Enable file caching
cache: true,
2019-11-25 06:59:54 +01:00
}),
2020-03-23 19:10:33 +01:00
],
2019-11-25 06:59:54 +01:00
},
module: {
2020-03-23 19:10:33 +01:00
rules: [
{
test: /\.jsx?$/,
//exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'], //Preset used for env setup
plugins: [
['@babel/transform-react-jsx'],
['react-hot-loader/babel'],
],
cacheDirectory: true,
cacheCompression: false,
},
2019-11-25 06:59:54 +01:00
},
},
2020-03-23 19:10:33 +01:00
/*{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
2019-11-25 06:59:54 +01:00
},
2020-03-23 19:10:33 +01:00
{
test: /\.coffee?$/,
use: 'coffee-loader',
},*/
{
test: /\.worker\.js$/,
use: {
loader: 'worker-loader',
},
},
{
test: /\.s?css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
sourceMap: !COMPRESS,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: !COMPRESS,
plugins: [autoprefixer()],
},
},
{
loader: 'resolve-url-loader',
},
{
loader: 'sass-loader',
options: {
sourceMap: !COMPRESS,
},
},
],
}),
},
{
test: /fontawesome([^.]+).(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: '../fonts/',
},
},
],
},
{
test: /\.(ttf|otf|eot|svg|woff(2)?)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: '../fonts/',
},
},
],
},
{
test: /\.(png|jpg|jpeg|gif|svg)$/,
2019-11-25 06:59:54 +01:00
loader: 'file-loader',
options: {
name: '[name].[ext]',
2020-03-23 19:10:33 +01:00
outputPath: 'img/',
publicPath: '../img/',
},
2019-11-25 06:59:54 +01:00
},
2020-03-23 19:10:33 +01:00
],
2019-11-25 06:59:54 +01:00
},
resolve: {
modules: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'node_modules'),
],
alias: {
2020-03-23 19:10:33 +01:00
jquery: require.resolve('jquery'),
jQuery: require.resolve('jquery'),
2019-11-25 06:59:54 +01:00
},
},
plugins: plugins,
devServer: {
host: '127.0.0.1',
port: 8001,
historyApiFallback: true,
hot: false,
clientLogLevel: 'info',
contentBase: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname, 'dist'),
],
//watchContentBase: true,
overlay: {
warnings: true,
2020-03-23 19:10:33 +01:00
errors: true,
2019-11-25 06:59:54 +01:00
},
headers: {
'Access-Control-Allow-Origin': '*',
2020-03-23 19:10:33 +01:00
},
2019-11-25 06:59:54 +01:00
},
};