From: Ben Shum Date: Wed, 29 May 2019 11:46:13 +0000 (-0400) Subject: Pin Angular-CLI version to 7.0.7 in Makefile X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d20efb84d594ba276d8e9775ee4929ed74c990b5;p=working%2FEvergreen.git 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 --- 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