1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

update angular and libs

This commit is contained in:
Kyle Spearrin
2018-09-11 17:30:44 -04:00
parent 67b187f884
commit 335e0dd575
7 changed files with 1559 additions and 1949 deletions

View File

@@ -14,7 +14,7 @@ if (process.env.NODE_ENV == null) {
const ENV = process.env.ENV = process.env.NODE_ENV;
const extractCss = new ExtractTextPlugin({
filename: '[name].[chunkhash].css',
filename: '[name].[hash].css',
disable: false,
allChunks: true,
});
@@ -73,7 +73,7 @@ const plugins = [
path.resolve(__dirname, 'build/*'),
]),
// ref: https://github.com/angular/angular/issues/20357
new webpack.ContextReplacementPlugin(/\@angular(\\|\/)core(\\|\/)esm5/,
new webpack.ContextReplacementPlugin(/\@angular(\\|\/)core(\\|\/)fesm5/,
path.resolve(__dirname, './src')),
new HtmlWebpackPlugin({
template: './src/index.html',
@@ -136,7 +136,9 @@ const serve = {
cert: fs.readFileSync('dev-server' + certSuffix + '.pem'),
},
// host: '192.168.1.9',
hot: false,
// host client has issues. ref: https://github.com/webpack-contrib/webpack-serve/issues/233
// hotClient: false,
};
const config = {
@@ -174,7 +176,7 @@ const config = {
modules: [path.resolve('node_modules')],
},
output: {
filename: '[name].[chunkhash].js',
filename: '[name].[hash].js',
path: path.resolve(__dirname, 'build'),
},
module: { rules: moduleRules },