From d20efb84d594ba276d8e9775ee4929ed74c990b5 Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Wed, 29 May 2019 07:46:13 -0400 Subject: [PATCH] Pin Angular-CLI version to 7.0.7 in Makefile During the Makefile process, we install angular-cli (which gets the latest). Pin to version 7.0.7 (to match version we use for eg2) and avoid compatiblity problems with new angular-cli v8.0+ and our current node.js version. Signed-off-by: Ben Shum --- Open-ILS/src/extras/install/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/extras/install/Makefile.common b/Open-ILS/src/extras/install/Makefile.common index 96ec3b8aff..4044ff3836 100644 --- a/Open-ILS/src/extras/install/Makefile.common +++ b/Open-ILS/src/extras/install/Makefile.common @@ -36,7 +36,7 @@ install_nodejs_from_source: wget -N $(NODEJS_BINARY) tar -C /usr/local --strip-components 1 -xJf $(NODEJS_TARBIN) npm update - npm install -g @angular/cli + npm install -g @angular/cli@7.0.7 clean: make -C $(LIBDBI) clean -- 2.11.0