From bf8c0c7a99b8f362d4f481b49d508bb57c8772bc Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 17 Nov 2020 15:49:51 -0500 Subject: [PATCH] switch to yarn install for faster installs, and remove .PHONY from build Signed-off-by: Sebastian Malton --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8dcef26c2e..69daed2577 100644 --- a/Makefile +++ b/Makefile @@ -66,9 +66,8 @@ endif .PHONY: $(extension_node_modules) $(extension_node_modules): - cd $(@:/node_modules=) && npm install --no-audit --no-fund + cd $(@:/node_modules=) && yarn import && yarn install && rm yarn.lock -.PHONY: $(extension_dists) $(extension_dists): src/extensions/npm/extensions/dist cd $(@:/dist=) && npm run build