2016-06-03 22:47:55 +02:00
|
|
|
/**
|
|
|
|
* @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
|
2017-07-23 14:49:52 +02:00
|
|
|
const videoEmbedConfig = require('./webpack.video-embed.js')
|
2016-06-03 22:47:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Webpack Plugins
|
|
|
|
*/
|
|
|
|
const DefinePlugin = require('webpack/lib/DefinePlugin')
|
2017-09-14 22:16:39 +02:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
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')
|
2017-01-27 10:51:26 +01:00
|
|
|
const OptimizeJsPlugin = require('optimize-js-plugin')
|
2017-06-11 12:28:22 +02:00
|
|
|
const HashedModuleIdsPlugin = require('webpack/lib/HashedModuleIdsPlugin')
|
2017-09-06 21:48:15 +02:00
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
|
2016-06-03 22:47:55 +02:00
|
|
|
/**
|
|
|
|
* Webpack Constants
|
|
|
|
*/
|
|
|
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production'
|
|
|
|
const HOST = process.env.HOST || 'localhost'
|
|
|
|
const PORT = process.env.PORT || 8080
|
2017-09-06 21:48:15 +02:00
|
|
|
const AOT = process.env.BUILD_AOT || helpers.hasNpmFlag('aot')
|
|
|
|
const METADATA = {
|
2016-06-03 22:47:55 +02:00
|
|
|
host: HOST,
|
|
|
|
port: PORT,
|
|
|
|
ENV: ENV,
|
2017-06-11 15:19:43 +02:00
|
|
|
HMR: false,
|
2017-09-06 21:48:15 +02:00
|
|
|
AOT: AOT,
|
2017-06-11 15:19:43 +02:00
|
|
|
API_URL: ''
|
2017-09-06 21:48:15 +02:00
|
|
|
}
|
2016-06-03 22:47:55 +02:00
|
|
|
|
2016-09-19 22:27:17 +02:00
|
|
|
module.exports = function (env) {
|
2017-07-23 14:49:52 +02:00
|
|
|
return [
|
|
|
|
videoEmbedConfig({ env: ENV }),
|
2016-11-04 12:50:01 +01:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
webpackMerge(commonConfig({ env: ENV }), {
|
2016-09-19 22:27:17 +02:00
|
|
|
/**
|
2017-07-23 14:49:52 +02:00
|
|
|
* Developer tool to enhance debugging
|
2016-11-04 12:50:01 +01:00
|
|
|
*
|
2017-07-23 14:49:52 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#devtool
|
|
|
|
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
|
2016-11-04 12:50:01 +01:00
|
|
|
*/
|
2017-07-23 14:49:52 +02:00
|
|
|
devtool: 'source-map',
|
2016-09-19 22:27:17 +02:00
|
|
|
|
|
|
|
/**
|
2017-07-23 14:49:52 +02:00
|
|
|
* Options affecting the output of the compilation.
|
2016-11-04 12:50:01 +01:00
|
|
|
*
|
2017-07-23 14:49:52 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#output
|
2016-11-04 12:50:01 +01:00
|
|
|
*/
|
2017-07-23 14:49:52 +02:00
|
|
|
output: {
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/**
|
|
|
|
* The output directory as absolute path (required).
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#output-path
|
|
|
|
*/
|
|
|
|
path: helpers.root('dist'),
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02: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
|
|
|
|
*/
|
|
|
|
filename: '[name].[chunkhash].bundle.js',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
sourceMapFilename: '[file].map',
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02: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: '[name].[chunkhash].chunk.js',
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
publicPath: '/client/'
|
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /junk\/index\.js$/,
|
|
|
|
// exclude: /(node_modules|bower_components)/,
|
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
presets: [ 'env' ]
|
|
|
|
}
|
2017-06-25 11:33:16 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-23 14:49:52 +02:00
|
|
|
]
|
|
|
|
},
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-01-27 10:51:26 +01:00
|
|
|
/**
|
2017-07-23 14:49:52 +02:00
|
|
|
* Add additional plugins to the compiler.
|
2017-01-27 10:51:26 +01:00
|
|
|
*
|
2017-07-23 14:49:52 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#plugins
|
2017-01-27 10:51:26 +01:00
|
|
|
*/
|
2017-07-23 14:49:52 +02:00
|
|
|
plugins: [
|
2017-01-27 10:51:26 +01:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/**
|
|
|
|
* Webpack plugin to optimize a JavaScript file for faster initial load
|
|
|
|
* by wrapping eagerly-invoked functions.
|
|
|
|
*
|
|
|
|
* See: https://github.com/vigneshshanmugam/optimize-js-plugin
|
|
|
|
*/
|
2017-01-27 10:51:26 +01:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
new OptimizeJsPlugin({
|
|
|
|
sourceMap: false
|
|
|
|
}),
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/**
|
|
|
|
* 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({
|
2016-09-19 22:27:17 +02:00
|
|
|
'ENV': JSON.stringify(METADATA.ENV),
|
2017-07-23 14:49:52 +02:00
|
|
|
'HMR': METADATA.HMR,
|
|
|
|
'API_URL': JSON.stringify(METADATA.API_URL),
|
2017-09-06 21:48:15 +02:00
|
|
|
'AOT': METADATA.AOT,
|
2017-07-23 14:49:52 +02:00
|
|
|
'process.version': JSON.stringify(process.version),
|
2017-09-06 21:48:15 +02:00
|
|
|
'process.env.ENV': JSON.stringify(METADATA.ENV),
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(METADATA.ENV),
|
|
|
|
'process.env.HMR': METADATA.HMR
|
2017-07-23 14:49:52 +02:00
|
|
|
}),
|
2017-06-25 11:33:16 +02:00
|
|
|
|
2017-07-23 14:49:52 +02: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
|
|
|
|
*/
|
|
|
|
// NOTE: To debug prod builds uncomment //debug lines and comment //prod lines
|
|
|
|
new UglifyJsPlugin({
|
2017-09-06 21:48:15 +02:00
|
|
|
parallel: true,
|
|
|
|
uglifyOptions: {
|
|
|
|
ie8: false,
|
|
|
|
ecma: 6,
|
|
|
|
warnings: true,
|
|
|
|
mangle: true,
|
|
|
|
output: {
|
|
|
|
comments: false,
|
|
|
|
beautify: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
warnings: true
|
2017-07-23 14:49:52 +02:00
|
|
|
}),
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-09-06 21:48:15 +02:00
|
|
|
/**
|
|
|
|
* Plugin: NormalModuleReplacementPlugin
|
|
|
|
* Description: Replace resources that matches resourceRegExp with newResource
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/list-of-plugins.html#normalmodulereplacementplugin
|
|
|
|
*/
|
2017-07-23 14:49:52 +02:00
|
|
|
new NormalModuleReplacementPlugin(
|
2017-09-06 21:48:15 +02:00
|
|
|
/(angular2|@angularclass)((\\|\/)|-)hmr/,
|
2017-07-23 14:49:52 +02:00
|
|
|
helpers.root('config/empty.js')
|
|
|
|
),
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
new NormalModuleReplacementPlugin(
|
|
|
|
/zone\.js(\\|\/)dist(\\|\/)long-stack-trace-zone/,
|
|
|
|
helpers.root('config/empty.js')
|
|
|
|
),
|
2017-01-13 12:16:00 +01:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
new HashedModuleIdsPlugin(),
|
2017-01-13 12:16:00 +01:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/**
|
2017-09-06 21:48:15 +02:00
|
|
|
* AoT
|
2017-07-23 14:49:52 +02:00
|
|
|
*/
|
2017-09-06 21:48:15 +02:00
|
|
|
(AOT ? (
|
|
|
|
new NormalModuleReplacementPlugin(
|
|
|
|
/@angular(\\|\/)compiler/,
|
|
|
|
helpers.root('config/empty.js')
|
|
|
|
)
|
|
|
|
) : (new LoaderOptionsPlugin({}))),
|
2016-06-03 22:47:55 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/**
|
|
|
|
* Plugin LoaderOptionsPlugin (experimental)
|
|
|
|
*
|
|
|
|
* See: https://gist.github.com/sokra/27b24881210b56bbaff7
|
|
|
|
*/
|
|
|
|
new LoaderOptionsPlugin({
|
|
|
|
minimize: true,
|
|
|
|
debug: false,
|
|
|
|
options: {
|
2016-06-03 22:47:55 +02:00
|
|
|
|
2017-07-23 14:49:52 +02: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-06-03 22:47:55 +02:00
|
|
|
|
2017-07-23 14:49:52 +02: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: [
|
|
|
|
[/#/, /(?:)/],
|
|
|
|
[/\*/, /(?:)/],
|
|
|
|
[/\[?\(?/, /(?:)/]
|
|
|
|
],
|
|
|
|
customAttrAssign: [/\)?]?=/]
|
|
|
|
},
|
2016-11-04 12:50:01 +01:00
|
|
|
|
2017-07-23 14:49:52 +02: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-11-04 12:50:01 +01:00
|
|
|
}
|
2017-09-14 22:16:39 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
new BundleAnalyzerPlugin({
|
|
|
|
// Can be `server`, `static` or `disabled`.
|
|
|
|
// In `server` mode analyzer will start HTTP server to show bundle report.
|
|
|
|
// In `static` mode single HTML file with bundle report will be generated.
|
|
|
|
// In `disabled` mode you can use this plugin to just generate Webpack Stats JSON file by setting `generateStatsFile` to `true`.
|
|
|
|
analyzerMode: 'static',
|
|
|
|
// Path to bundle report file that will be generated in `static` mode.
|
|
|
|
// Relative to bundles output directory.
|
|
|
|
reportFilename: 'report.html',
|
|
|
|
// Automatically open report in default browser
|
|
|
|
openAnalyzer: false,
|
|
|
|
// If `true`, Webpack Stats JSON file will be generated in bundles output directory
|
|
|
|
generateStatsFile: true,
|
|
|
|
// Name of Webpack Stats JSON file that will be generated if `generateStatsFile` is `true`.
|
|
|
|
// Relative to bundles output directory.
|
|
|
|
statsFilename: 'stats.json',
|
|
|
|
// Options for `stats.toJson()` method.
|
|
|
|
// For example you can exclude sources of your modules from stats file with `source: false` option.
|
|
|
|
// See more options here: https://github.com/webpack/webpack/blob/webpack-1/lib/Stats.js#L21
|
|
|
|
statsOptions: null,
|
|
|
|
// Log level. Can be 'info', 'warn', 'error' or 'silent'.
|
|
|
|
logLevel: 'info'
|
2017-07-23 14:49:52 +02:00
|
|
|
})
|
|
|
|
],
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
/*
|
|
|
|
* Include polyfills or mocks for various node stuff
|
|
|
|
* Description: Node configuration
|
|
|
|
*
|
|
|
|
* See: https://webpack.github.io/docs/configuration.html#node
|
|
|
|
*/
|
|
|
|
node: {
|
|
|
|
global: true,
|
|
|
|
crypto: 'empty',
|
|
|
|
fs: 'empty',
|
|
|
|
process: true,
|
|
|
|
module: false,
|
|
|
|
clearImmediate: false,
|
|
|
|
setImmediate: false
|
|
|
|
}
|
2016-09-19 22:27:17 +02:00
|
|
|
|
2017-07-23 14:49:52 +02:00
|
|
|
})
|
|
|
|
]
|
2016-09-19 22:27:17 +02:00
|
|
|
}
|