From 9fd3147414130272cefe8c171249f6c4acb36bc7 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Wed, 8 Mar 2017 11:51:35 -0500 Subject: [PATCH] LP#1671165: Fix web client build error Bower install was grabbing a later version of angular-cookies than we wanted, resulting in errors when attempting to build the web client. Changing a caret to a tilde in the bower.json files keeps us to a 1.5.x version of angular-cookies, making web client builds happy. Many thanks to Ben Shum for finding the solution to this problem! Signed-off-by: Kathy Lussier Signed-off-by: Ben Shum Conflicts: Open-ILS/web/js/ui/default/staff/bower.json --- Open-ILS/web/js/ui/default/staff/bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/bower.json b/Open-ILS/web/js/ui/default/staff/bower.json index f332f3b55e..ff7e082398 100644 --- a/Open-ILS/web/js/ui/default/staff/bower.json +++ b/Open-ILS/web/js/ui/default/staff/bower.json @@ -30,7 +30,7 @@ "angular-tree-control": "~0.2.28", "angular-animate": "~1.5.3", "angular-hotkeys": "cfp-angular-hotkeys#^1.7.0", - "angular-cookies": "^1.5.8" + "angular-cookies": "~1.5.8" }, "resolutions": { "angular": "~1.5.5" -- 2.11.0