From 3e473ea9d7e400df9bb19d62ad4623418775ba15 Mon Sep 17 00:00:00 2001 From: damencho Date: Fri, 8 Jul 2016 10:52:04 -0500 Subject: [PATCH] Executes npm update before making. Executes npm update before making, in order to update latest version of packages like lib-jitsi-meet which are updated from git. The npm install method is supposed to only resolve dependencies and not update to latest versions. --- Makefile | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 393f72703..f68c81d86 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ IFRAME_API_DIR = ./modules/API/external all: update-deps compile compile-iframe-api uglify uglify-iframe-api deploy clean update-deps: - $(NPM) install + $(NPM) update compile: $(BROWSERIFY) $(BROWSERIFY_FLAGS) -e app.js -s APP | $(EXORCIST) $(OUTPUT_DIR)/app.bundle.js.map > $(OUTPUT_DIR)/app.bundle.js diff --git a/README.md b/README.md index 07a4f8ddb..365d8d150 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ npm link lib-jitsi-meet ``` So now after changes in local `lib-jitsi-meet` repository you can rebuild it with `npm run install` and your `jitsi-meet` repository will use that modified library. +Note: when using node version 4.x, the make file of jitsi-meet do npm update which will delete the link, no longer the case with version 6.x. If you do not want to use local repository anymore you should run ```bash