Client: fix prod build process
This commit is contained in:
parent
d268c551cc
commit
ad22074a78
|
@ -142,15 +142,11 @@ module.exports = function (options) {
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
test: /\.scss$/,
|
test: /\.(sass|scss)$/,
|
||||||
exclude: /node_modules/,
|
loaders: ['css-to-string-loader', 'css-loader?sourceMap', 'resolve-url', 'sass-loader?sourceMap']
|
||||||
loaders: [ 'raw-loader', 'sass-loader' ]
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
test: /\.(woff2?|ttf|eot|svg)$/,
|
|
||||||
loader: 'url?limit=10000&name=assets/fonts/[hash].[ext]'
|
|
||||||
},
|
},
|
||||||
|
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'url?limit=10000&minetype=application/font-woff' },
|
||||||
|
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'file' },
|
||||||
|
|
||||||
/* Raw loader support for *.html
|
/* Raw loader support for *.html
|
||||||
* Returns file content as string
|
* Returns file content as string
|
||||||
|
|
|
@ -30,201 +30,203 @@ const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
|
||||||
HMR: false
|
HMR: false
|
||||||
})
|
})
|
||||||
|
|
||||||
module.exports = webpackMerge(commonConfig, {
|
module.exports = function (env) {
|
||||||
/**
|
return webpackMerge(commonConfig({env: ENV}), {
|
||||||
* Switch loaders to debug mode.
|
|
||||||
*
|
|
||||||
* See: http://webpack.github.io/docs/configuration.html#debug
|
|
||||||
*/
|
|
||||||
debug: false,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Developer tool to enhance debugging
|
|
||||||
*
|
|
||||||
* See: http://webpack.github.io/docs/configuration.html#devtool
|
|
||||||
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
|
|
||||||
*/
|
|
||||||
devtool: 'source-map',
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Options affecting the output of the compilation.
|
|
||||||
*
|
|
||||||
* See: http://webpack.github.io/docs/configuration.html#output
|
|
||||||
*/
|
|
||||||
output: {
|
|
||||||
/**
|
/**
|
||||||
* The output directory as absolute path (required).
|
* Switch loaders to debug mode.
|
||||||
*
|
*
|
||||||
* See: http://webpack.github.io/docs/configuration.html#output-path
|
* See: http://webpack.github.io/docs/configuration.html#debug
|
||||||
*/
|
*/
|
||||||
path: helpers.root('dist'),
|
debug: false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies the name of each output file on disk.
|
* Developer tool to enhance debugging
|
||||||
* IMPORTANT: You must not specify an absolute path here!
|
|
||||||
*
|
*
|
||||||
* See: http://webpack.github.io/docs/configuration.html#output-filename
|
* See: http://webpack.github.io/docs/configuration.html#devtool
|
||||||
|
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
|
||||||
*/
|
*/
|
||||||
filename: '[name].[chunkhash].bundle.js',
|
devtool: 'source-map',
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The filename of the SourceMaps for the JavaScript files.
|
* Options affecting the output of the compilation.
|
||||||
* They are inside the output.path directory.
|
|
||||||
*
|
*
|
||||||
* See: http://webpack.github.io/docs/configuration.html#output-sourcemapfilename
|
* See: http://webpack.github.io/docs/configuration.html#output
|
||||||
*/
|
*/
|
||||||
sourceMapFilename: '[name].[chunkhash].bundle.map',
|
output: {
|
||||||
|
/**
|
||||||
|
* The output directory as absolute path (required).
|
||||||
|
*
|
||||||
|
* See: http://webpack.github.io/docs/configuration.html#output-path
|
||||||
|
*/
|
||||||
|
path: helpers.root('dist'),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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: '[name].[chunkhash].bundle.map',
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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'
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
externals: {
|
||||||
|
webtorrent: 'WebTorrent'
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The filename of non-entry chunks as relative path
|
* Add additional plugins to the compiler.
|
||||||
* inside the output.path directory.
|
|
||||||
*
|
*
|
||||||
* See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
|
* See: http://webpack.github.io/docs/configuration.html#plugins
|
||||||
*/
|
*/
|
||||||
chunkFilename: '[id].[chunkhash].chunk.js'
|
plugins: [
|
||||||
|
|
||||||
},
|
/**
|
||||||
|
* Plugin: WebpackMd5Hash
|
||||||
|
* Description: Plugin to replace a standard webpack chunkhash with md5.
|
||||||
|
*
|
||||||
|
* See: https://www.npmjs.com/package/webpack-md5-hash
|
||||||
|
*/
|
||||||
|
new WebpackMd5Hash(),
|
||||||
|
|
||||||
externals: {
|
/**
|
||||||
webtorrent: 'WebTorrent'
|
* 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(),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add additional plugins to the compiler.
|
* Plugin: DefinePlugin
|
||||||
*
|
* Description: Define free variables.
|
||||||
* See: http://webpack.github.io/docs/configuration.html#plugins
|
* Useful for having development builds with debug logging or adding global constants.
|
||||||
*/
|
*
|
||||||
plugins: [
|
* Environment helpers
|
||||||
|
*
|
||||||
/**
|
* See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
|
||||||
* Plugin: WebpackMd5Hash
|
*/
|
||||||
* Description: Plugin to replace a standard webpack chunkhash with md5.
|
// NOTE: when adding more properties make sure you include them in custom-typings.d.ts
|
||||||
*
|
new DefinePlugin({
|
||||||
* 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),
|
'ENV': JSON.stringify(METADATA.ENV),
|
||||||
'NODE_ENV': JSON.stringify(METADATA.ENV),
|
'HMR': METADATA.HMR,
|
||||||
'HMR': METADATA.HMR
|
'process.env': {
|
||||||
}
|
'ENV': JSON.stringify(METADATA.ENV),
|
||||||
}),
|
'NODE_ENV': JSON.stringify(METADATA.ENV),
|
||||||
|
'HMR': METADATA.HMR
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plugin: UglifyJsPlugin
|
* Plugin: UglifyJsPlugin
|
||||||
* Description: Minimize all JavaScript output of chunks.
|
* Description: Minimize all JavaScript output of chunks.
|
||||||
* Loaders are switched into minimizing mode.
|
* Loaders are switched into minimizing mode.
|
||||||
*
|
*
|
||||||
* See: https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
|
* See: https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
|
||||||
*/
|
*/
|
||||||
// NOTE: To debug prod builds uncomment //debug lines and comment //prod lines
|
// NOTE: To debug prod builds uncomment //debug lines and comment //prod lines
|
||||||
new UglifyJsPlugin({
|
new UglifyJsPlugin({
|
||||||
// beautify: true, //debug
|
// beautify: true, //debug
|
||||||
// mangle: false, //debug
|
// mangle: false, //debug
|
||||||
// dead_code: false, //debug
|
// dead_code: false, //debug
|
||||||
// unused: false, //debug
|
// unused: false, //debug
|
||||||
// deadCode: false, //debug
|
// deadCode: false, //debug
|
||||||
// compress: {
|
// compress: {
|
||||||
// screw_ie8: true,
|
// screw_ie8: true,
|
||||||
// keep_fnames: true,
|
// keep_fnames: true,
|
||||||
// drop_debugger: false,
|
// drop_debugger: false,
|
||||||
// dead_code: false,
|
// dead_code: false,
|
||||||
// unused: false
|
// unused: false
|
||||||
// }, // debug
|
// }, // debug
|
||||||
// comments: true, //debug
|
// comments: true, //debug
|
||||||
|
|
||||||
beautify: false, // prod
|
beautify: false, // prod
|
||||||
mangle: { screw_ie8: true, keep_fnames: true }, // prod
|
mangle: { screw_ie8: true, keep_fnames: true }, // prod
|
||||||
compress: { screw_ie8: true }, // prod
|
compress: { screw_ie8: true }, // prod
|
||||||
comments: false // prod
|
comments: false // prod
|
||||||
}),
|
}),
|
||||||
|
|
||||||
new NormalModuleReplacementPlugin(
|
new NormalModuleReplacementPlugin(
|
||||||
/angular2-hmr/,
|
/angular2-hmr/,
|
||||||
helpers.root('config/modules/angular2-hmr-prod.js')
|
helpers.root('config/modules/angular2-hmr-prod.js')
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plugin: CompressionPlugin
|
* Plugin: CompressionPlugin
|
||||||
* Description: Prepares compressed versions of assets to serve
|
* Description: Prepares compressed versions of assets to serve
|
||||||
* them with Content-Encoding
|
* them with Content-Encoding
|
||||||
*
|
*
|
||||||
* See: https://github.com/webpack/compression-webpack-plugin
|
* See: https://github.com/webpack/compression-webpack-plugin
|
||||||
*/
|
*/
|
||||||
// new CompressionPlugin({
|
// new CompressionPlugin({
|
||||||
// regExp: /\.css$|\.html$|\.js$|\.map$/,
|
// regExp: /\.css$|\.html$|\.js$|\.map$/,
|
||||||
// threshold: 2 * 1024
|
// threshold: 2 * 1024
|
||||||
// })
|
// })
|
||||||
|
|
||||||
],
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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'
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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: [/\)?\]?=/]
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Include polyfills or mocks for various node stuff
|
* Static analysis linter for TypeScript advanced options configuration
|
||||||
* Description: Node configuration
|
* Description: An extensible linter for the TypeScript language.
|
||||||
*
|
*
|
||||||
* See: https://webpack.github.io/docs/configuration.html#node
|
* See: https://github.com/wbuchwalter/tslint-loader
|
||||||
*/
|
*/
|
||||||
node: {
|
tslint: {
|
||||||
global: 'window',
|
emitErrors: true,
|
||||||
crypto: 'empty',
|
failOnHint: true,
|
||||||
process: false,
|
resourcePath: 'src'
|
||||||
module: false,
|
},
|
||||||
clearImmediate: false,
|
|
||||||
setImmediate: false
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
/**
|
||||||
|
* 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: [/\)?\]?=/]
|
||||||
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Include polyfills or mocks for various node stuff
|
||||||
|
* Description: Node configuration
|
||||||
|
*
|
||||||
|
* See: https://webpack.github.io/docs/configuration.html#node
|
||||||
|
*/
|
||||||
|
node: {
|
||||||
|
global: 'window',
|
||||||
|
crypto: 'empty',
|
||||||
|
process: false,
|
||||||
|
module: false,
|
||||||
|
clearImmediate: false,
|
||||||
|
setImmediate: false
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
"copy-webpack-plugin": "^3.0.1",
|
"copy-webpack-plugin": "^3.0.1",
|
||||||
"core-js": "^2.4.1",
|
"core-js": "^2.4.1",
|
||||||
"css-loader": "^0.25.0",
|
"css-loader": "^0.25.0",
|
||||||
|
"css-to-string-loader": "^0.1.1",
|
||||||
"es6-promise": "^3.0.2",
|
"es6-promise": "^3.0.2",
|
||||||
"es6-promise-loader": "^1.0.1",
|
"es6-promise-loader": "^1.0.1",
|
||||||
"es6-shim": "^0.35.0",
|
"es6-shim": "^0.35.0",
|
||||||
|
@ -53,13 +54,13 @@
|
||||||
"json-loader": "^0.5.4",
|
"json-loader": "^0.5.4",
|
||||||
"ng2-bootstrap": "^1.1.5",
|
"ng2-bootstrap": "^1.1.5",
|
||||||
"ng2-file-upload": "^1.0.3",
|
"ng2-file-upload": "^1.0.3",
|
||||||
"node-sass": "^3.7.0",
|
"node-sass": "^3.10.0",
|
||||||
"normalize.css": "^4.1.1",
|
"normalize.css": "^4.1.1",
|
||||||
"raw-loader": "^0.5.1",
|
"raw-loader": "^0.5.1",
|
||||||
"reflect-metadata": "0.1.3",
|
"reflect-metadata": "0.1.3",
|
||||||
"resolve-url-loader": "^1.4.3",
|
"resolve-url-loader": "^1.6.0",
|
||||||
"rxjs": "5.0.0-beta.12",
|
"rxjs": "5.0.0-beta.12",
|
||||||
"sass-loader": "^3.2.0",
|
"sass-loader": "^3.2.3",
|
||||||
"source-map-loader": "^0.1.5",
|
"source-map-loader": "^0.1.5",
|
||||||
"string-replace-loader": "^1.0.3",
|
"string-replace-loader": "^1.0.3",
|
||||||
"style-loader": "^0.13.1",
|
"style-loader": "^0.13.1",
|
||||||
|
|
|
@ -17,11 +17,7 @@
|
||||||
"es6"
|
"es6"
|
||||||
],
|
],
|
||||||
"types": [
|
"types": [
|
||||||
"hammerjs",
|
|
||||||
"jasmine",
|
|
||||||
"node",
|
"node",
|
||||||
"protractor",
|
|
||||||
"selenium-webdriver",
|
|
||||||
"source-map",
|
"source-map",
|
||||||
"uglify-js",
|
"uglify-js",
|
||||||
"webpack"
|
"webpack"
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
cd client || exit -1
|
cd client || exit -1
|
||||||
|
|
||||||
npm run webpack -- --config config/webpack.prod.js --progress --profile --colors --display-error-details --display-cached --bail
|
npm run webpack -- --config config/webpack.prod.js --progress --profile --bail
|
||||||
|
|
Loading…
Reference in New Issue