PeerTube/client/config/webpack.prod.js

304 lines
8.8 KiB
JavaScript
Raw Normal View History

/**
* @author: @AngularClass
*/
const helpers = require('./helpers')
const webpackMerge = require('webpack-merge') // used to merge webpack configs
const commonConfig = require('./webpack.common.js') // the settings that are common to prod and dev
/**
* Webpack Plugins
*/
const DefinePlugin = require('webpack/lib/DefinePlugin')
2016-11-04 12:50:01 +01:00
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
2017-01-13 12:16:00 +01:00
const NormalModuleReplacementPlugin = require('webpack/lib/NormalModuleReplacementPlugin')
const UglifyJsPlugin = require('webpack/lib/optimize/UglifyJsPlugin')
const WebpackMd5Hash = require('webpack-md5-hash')
/**
* Webpack Constants
*/
const ENV = process.env.NODE_ENV = process.env.ENV = 'production'
const HOST = process.env.HOST || 'localhost'
const PORT = process.env.PORT || 8080
2016-09-12 20:43:44 +02:00
const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
host: HOST,
port: PORT,
ENV: ENV,
HMR: false
})
2016-09-19 22:27:17 +02:00
module.exports = function (env) {
return webpackMerge(commonConfig({env: ENV}), {
/**
2016-11-04 12:50:01 +01:00
* Developer tool to enhance debugging
*
* See: http://webpack.github.io/docs/configuration.html#devtool
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
*/
2016-09-19 22:27:17 +02:00
devtool: 'source-map',
/**
2016-11-04 12:50:01 +01:00
* Options affecting the output of the compilation.
*
* See: http://webpack.github.io/docs/configuration.html#output
*/
2016-09-19 22:27:17 +02:00
output: {
2016-11-04 12:50:01 +01:00
2016-09-19 22:27:17 +02:00
/**
2016-11-04 12:50:01 +01:00
* The output directory as absolute path (required).
*
* See: http://webpack.github.io/docs/configuration.html#output-path
*/
2016-09-19 22:27:17 +02:00
path: helpers.root('dist'),
/**
2016-11-04 12:50:01 +01:00
* Specifies the name of each output file on disk.
* IMPORTANT: You must not specify an absolute path here!
*
* See: http://webpack.github.io/docs/configuration.html#output-filename
*/
2016-09-19 22:27:17 +02:00
filename: '[name].[chunkhash].bundle.js',
/**
2016-11-04 12:50:01 +01:00
* The filename of the SourceMaps for the JavaScript files.
* They are inside the output.path directory.
*
* See: http://webpack.github.io/docs/configuration.html#output-sourcemapfilename
*/
2016-09-19 22:27:17 +02:00
sourceMapFilename: '[name].[chunkhash].bundle.map',
/**
2016-11-04 12:50:01 +01:00
* The filename of non-entry chunks as relative path
* inside the output.path directory.
*
* See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
*/
chunkFilename: '[id].[chunkhash].chunk.js',
2016-09-19 22:27:17 +02:00
2016-11-04 12:50:01 +01:00
publicPath: '/client/'
2016-09-19 22:27:17 +02:00
},
externals: {
webtorrent: 'WebTorrent'
},
/**
2016-09-19 22:27:17 +02:00
* Add additional plugins to the compiler.
*
2016-09-19 22:27:17 +02:00
* See: http://webpack.github.io/docs/configuration.html#plugins
*/
2016-09-19 22:27:17 +02:00
plugins: [
/**
* Plugin: WebpackMd5Hash
* Description: Plugin to replace a standard webpack chunkhash with md5.
*
* See: https://www.npmjs.com/package/webpack-md5-hash
*/
new WebpackMd5Hash(),
/**
* Plugin: DedupePlugin
* Description: Prevents the inclusion of duplicate code into your bundle
* and instead applies a copy of the function at runtime.
*
* See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
* See: https://github.com/webpack/docs/wiki/optimization#deduplication
*/
// new DedupePlugin(),
/**
* Plugin: DefinePlugin
* Description: Define free variables.
* Useful for having development builds with debug logging or adding global constants.
*
* Environment helpers
*
* See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
*/
// NOTE: when adding more properties make sure you include them in custom-typings.d.ts
new DefinePlugin({
'ENV': JSON.stringify(METADATA.ENV),
'HMR': METADATA.HMR,
'process.env': {
'ENV': JSON.stringify(METADATA.ENV),
'NODE_ENV': JSON.stringify(METADATA.ENV),
'HMR': METADATA.HMR
}
}),
2016-11-04 12:50:01 +01:00
/**
* Plugin: UglifyJsPlugin
* Description: Minimize all JavaScript output of chunks.
* Loaders are switched into minimizing mode.
*
* See: https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
*/
2016-09-19 22:27:17 +02:00
// NOTE: To debug prod builds uncomment //debug lines and comment //prod lines
new UglifyJsPlugin({
// beautify: true, //debug
// mangle: false, //debug
// dead_code: false, //debug
// unused: false, //debug
// deadCode: false, //debug
// compress: {
// screw_ie8: true,
// keep_fnames: true,
// drop_debugger: false,
// dead_code: false,
// unused: false
// }, // debug
// comments: true, //debug
beautify: false, // prod
2017-01-13 12:16:00 +01:00
output: {
comments: false
}, // prod
2016-11-04 12:50:01 +01:00
mangle: {
2017-01-13 12:16:00 +01:00
screw_ie8: true
2016-11-04 12:50:01 +01:00
}, // prod
compress: {
screw_ie8: true,
2017-01-13 12:16:00 +01:00
warnings: false,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
negate_iife: false // we need this for lazy v8
}
2016-09-19 22:27:17 +02:00
}),
new NormalModuleReplacementPlugin(
/angular2-hmr/,
2017-01-13 12:16:00 +01:00
helpers.root('config/empty.js')
2016-11-04 12:50:01 +01:00
),
2016-09-19 22:27:17 +02:00
2017-01-13 12:16:00 +01:00
new NormalModuleReplacementPlugin(
/zone\.js(\\|\/)dist(\\|\/)long-stack-trace-zone/,
helpers.root('config/empty.js')
),
// AoT
// new NormalModuleReplacementPlugin(
// /@angular(\\|\/)upgrade/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /@angular(\\|\/)compiler/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /@angular(\\|\/)platform-browser-dynamic/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /dom(\\|\/)debug(\\|\/)ng_probe/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /dom(\\|\/)debug(\\|\/)by/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /src(\\|\/)debug(\\|\/)debug_node/,
// helpers.root('config/empty.js')
// ),
// new NormalModuleReplacementPlugin(
// /src(\\|\/)debug(\\|\/)debug_renderer/,
// helpers.root('config/empty.js')
// ),
2016-09-19 22:27:17 +02:00
/**
2016-11-04 12:50:01 +01:00
* Plugin: IgnorePlugin
* Description: Dont generate modules for requests matching the provided RegExp.
*
* See: http://webpack.github.io/docs/list-of-plugins.html#ignoreplugin
*/
// new IgnorePlugin(/angular2-hmr/),
/**
* Plugin: CompressionPlugin
* Description: Prepares compressed versions of assets to serve
* them with Content-Encoding
*
* See: https://github.com/webpack/compression-webpack-plugin
*/
// install compression-webpack-plugin
2016-09-19 22:27:17 +02:00
// new CompressionPlugin({
// regExp: /\.css$|\.html$|\.js$|\.map$/,
// threshold: 2 * 1024
// })
2016-11-04 12:50:01 +01:00
/**
* Plugin LoaderOptionsPlugin (experimental)
*
* See: https://gist.github.com/sokra/27b24881210b56bbaff7
*/
new LoaderOptionsPlugin({
debug: false,
options: {
2016-11-04 12:50:01 +01:00
/**
* Static analysis linter for TypeScript advanced options configuration
* Description: An extensible linter for the TypeScript language.
*
* See: https://github.com/wbuchwalter/tslint-loader
*/
tslint: {
emitErrors: true,
failOnHint: true,
resourcePath: 'src'
},
2016-11-04 12:50:01 +01:00
/**
* Html loader advanced options
*
* See: https://github.com/webpack/html-loader#advanced-options
*/
// TODO: Need to workaround Angular 2's html syntax => #id [bind] (event) *ngFor
htmlLoader: {
minimize: true,
removeAttributeQuotes: false,
caseSensitive: true,
customAttrSurround: [
[/#/, /(?:)/],
[/\*/, /(?:)/],
[/\[?\(?/, /(?:)/]
],
2017-01-15 19:30:14 +01:00
customAttrAssign: [/\)?]?=/]
2016-11-04 12:50:01 +01:00
},
// FIXME: Remove
// https://github.com/bholloway/resolve-url-loader/issues/36
// https://github.com/jtangelder/sass-loader/issues/289
context: __dirname,
output: {
path: helpers.root('dist')
}
}
})
],
2016-09-19 22:27:17 +02:00
/*
2016-11-04 12:50:01 +01:00
* Include polyfills or mocks for various node stuff
* Description: Node configuration
*
* See: https://webpack.github.io/docs/configuration.html#node
*/
2016-09-19 22:27:17 +02:00
node: {
2016-11-04 12:50:01 +01:00
global: true,
2016-09-19 22:27:17 +02:00
crypto: 'empty',
process: false,
module: false,
clearImmediate: false,
setImmediate: false
}
})
}