var webpack = require('webpack'); var path = require('path'); var loaders = require('./webpack.loaders'); var ExtractTextPlugin = require('extract-text-webpack-plugin'); var HtmlWebpackPlugin = require('html-webpack-plugin'); var WebpackCleanupPlugin = require('webpack-cleanup-plugin'); var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; var CopyWebpackPlugin = require('copy-webpack-plugin'); var artifacts = require("../test/artifacts"); var UglifyJsPlugin = require('uglifyjs-webpack-plugin'); var OUTPATH = artifacts.pathSync("/build"); module.exports = { entry: { app: './src/index.jsx', }, output: { path: OUTPATH, filename: '[name].[chunkhash].js', chunkFilename: '[chunkhash].js' }, resolve: { extensions: ['.js', '.jsx'] }, module: { noParse: [ /mapbox-gl\/dist\/mapbox-gl.js/ ], loaders }, node: { fs: "empty", net: 'empty', tls: 'empty' }, plugins: [ new webpack.NoEmitOnErrorsPlugin(), new WebpackCleanupPlugin(), new webpack.DefinePlugin({ 'process.env': { NODE_ENV: '"production"' } }), new UglifyJsPlugin(), new ExtractTextPlugin('[contenthash].css', { allChunks: true }), new HtmlWebpackPlugin({ template: './src/template.html', title: 'Maputnik' }), new CopyWebpackPlugin([ { from: './src/manifest.json', to: 'manifest.json' } ]), new BundleAnalyzerPlugin({ analyzerMode: 'static', defaultSizes: 'gzip', openAnalyzer: false, generateStatsFile: true, reportFilename: 'bundle-stats.html', statsFilename: 'bundle-stats.json', }) ] };