This commit is contained in:
Eugene Pankov
2017-06-20 23:28:58 +02:00
parent d9fd78fb42
commit 5e2dae153e
17 changed files with 217 additions and 115 deletions

View File

@@ -17,16 +17,7 @@
"@types/deep-equal": "1.0.0",
"@types/node": "7.0.12",
"@types/webpack-env": "1.13.0",
"awesome-typescript-loader": "3.1.2",
"css-loader": "^0.28.0",
"ngx-pipes": "^1.6.1",
"node-sass": "^4.5.2",
"pug": "^2.0.0-beta3",
"pug-loader": "^2.3.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"to-string-loader": "^1.1.5",
"webpack": "2.3.3"
"ngx-pipes": "^1.6.1"
},
"peerDependencies": {
"@angular/common": "4.0.1",

View File

@@ -1,4 +1,5 @@
const path = require('path')
const webpack = require('webpack')
module.exports = {
target: 'node',
@@ -44,5 +45,8 @@ module.exports = {
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
]
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
}