From 5fe3dcc07c842c5ed0a419213b0de894c934f120 Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Tue, 20 Sep 2016 01:56:53 +0200 Subject: [PATCH] chore(webpack): fixes webpack to 2.1.0-beta.22 to avoid broken CLI Please pin the webpack version to v2.1.0-beta.22. Beta-23 of webpack has breaking changes: https://github.com/webpack/webpack/releases/tag/v2.1.0-beta.23 see https://github.com/angular/angular-cli/issues/2234 for error log The evil `^` was introduced in https://github.com/angular/angular-cli/pull/2011 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 19f41fcf125a..ba59307947f8 100644 --- a/package.json +++ b/package.json @@ -109,7 +109,7 @@ "typedoc": "^0.4.2", "typescript": "2.0.2", "url-loader": "^0.5.7", - "webpack": "^2.1.0-beta.22", + "webpack": "2.1.0-beta.22", "webpack-dev-server": "^2.1.0-beta.3", "webpack-md5-hash": "0.0.5", "webpack-merge": "^0.14.0",