0
1
Fork 0

WebpackChunkHash removed (Doesn't refresh the manifest hash), Webpack updated

This commit is contained in:
Juan Ferrer Toribio 2018-01-04 10:47:39 +01:00
parent 41b9352455
commit 3fcebe26bf
3 changed files with 4 additions and 7 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.405.61) stable; urgency=low
hedera-web (1.405.62) stable; urgency=low
* Initial Release.

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "1.405.61",
"version": "1.405.62",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {
@ -20,8 +20,7 @@
"raw-loader": "^0.5.1",
"style-loader": "^0.19.0",
"url-loader": "^0.5.7",
"webpack": "^3.6.0",
"webpack-chunk-hash": "^0.5.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},

View File

@ -1,7 +1,6 @@
var path = require('path');
var webpack = require('webpack');
var AssetsWebpackPlugin = require('assets-webpack-plugin');
var WebpackChunkHash = require('webpack-chunk-hash');
var merge = require('webpack-merge');
var wpConfig = require('./webpack.config.json');
@ -61,8 +60,7 @@ var prodConfig = {
new AssetsWebpackPlugin({
path: outputPath
}),
new webpack.HashedModuleIdsPlugin(),
new WebpackChunkHash()
new webpack.HashedModuleIdsPlugin()
],
devtool: 'source-map'
};