silverstripe-webpack/webpack.config.prod.js

111 lines
3.6 KiB
JavaScript
Raw Normal View History

2018-02-22 14:39:58 +01:00
/*
* Production assets generation
*/
2018-02-05 12:11:01 +01:00
const webpack = require('webpack');
2018-02-22 14:39:58 +01:00
const conf = require('./webpack.configuration');
2018-02-05 12:11:01 +01:00
const merge = require('webpack-merge');
const common = require('./webpack.config.common.js');
2018-02-22 14:39:58 +01:00
const path = require('path');
const autoprefixer = require('autoprefixer');
2018-02-05 12:11:01 +01:00
const ExtractTextPlugin = require("extract-text-webpack-plugin");
2018-02-22 14:39:58 +01:00
2018-03-24 11:45:31 +01:00
//const OptimizeCSSAssets = require('optimize-css-assets-webpack-plugin');
2018-02-05 12:11:01 +01:00
const FaviconsWebpackPlugin = require("favicons-webpack-plugin");
module.exports = merge(common, {
output: {
2018-02-22 14:39:58 +01:00
path: path.join(__dirname, conf.DIST),
filename: 'js/[name].js',
publicPath: conf.DIST + '/',
2018-02-05 12:11:01 +01:00
},
module: {
rules: [{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: [{
loader: 'css-loader',
options: {
sourceMap: true
}
}, {
loader: 'postcss-loader',
options: {
sourceMap: true,
plugins: [
autoprefixer({
// If we want to use the same browser list for more tools
// this list should be moved to package.json
// https://evilmartians.com/chronicles/autoprefixer-7-browserslist-2-released
browsers: [
'ie >= 11',
'ie_mob >= 11',
'Safari >= 10',
'Android >= 4.4',
'Chrome >= 44', // Retail
'Samsung >= 4'
]
2018-02-22 14:39:58 +01:00
})
2018-02-05 12:11:01 +01:00
]
}
}, {
loader: 'resolve-url-loader'
}, {
loader: 'sass-loader',
options: {
sourceMap: true
}
}, ]
})
2018-02-08 19:16:34 +01:00
}, {
test: /fontawesome([^.]+).(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
2018-02-22 14:39:58 +01:00
outputPath: 'fonts/',
publicPath: '../fonts/'
2018-02-08 19:16:34 +01:00
}
}]
} ]
2018-02-05 12:11:01 +01:00
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
comments: false
}),
new ExtractTextPlugin({
2018-02-22 14:39:58 +01:00
filename: 'css/[name].css',
2018-02-05 12:11:01 +01:00
allChunks: true
}),
2018-03-24 11:45:31 +01:00
//new OptimizeCSSAssets(),
2018-02-05 12:11:01 +01:00
new FaviconsWebpackPlugin({
2018-02-22 14:39:58 +01:00
logo: path.join(__dirname, conf.SRC) + '/favicon.png',
2018-02-05 12:11:01 +01:00
prefix: '/icons/',
2018-02-22 14:39:58 +01:00
statsFilename: conf.DIST + '/icons/iconstats.json',
2018-02-05 12:11:01 +01:00
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: true,
favicons: true,
firefox: true,
opengraph: true,
twitter: true,
yandex: true,
windows: true
}
}),
],
});