From 75c708fda83955e5a1349ecec5c248c05e9e2796 Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Thu, 6 Apr 2017 17:10:55 +0200
Subject: [PATCH] [enh] Effective final dependencies are now explicitely given
 on build phase

---
 appveyor.yml               | 4 ++++
 ci/travis/before_deploy.sh | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/appveyor.yml b/appveyor.yml
index 7b7fdd528..4741bf397 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -49,6 +49,10 @@ after_test:
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] cd ../..
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm prune --production
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-ui --save --production
+  - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-bma --save --production
+  - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-crawler --save --production
+  - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-keypair --save --production
+  - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-prover --save --production
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] rd /s /q %cd%\node_modules\duniter-ui\node_modules
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] cd ..
   - if [%APPVEYOR_REPO_TAG_NAME%] neq [] mkdir duniter_release
diff --git a/ci/travis/before_deploy.sh b/ci/travis/before_deploy.sh
index 7c31e3a17..ffb9dc5df 100755
--- a/ci/travis/before_deploy.sh
+++ b/ci/travis/before_deploy.sh
@@ -18,6 +18,10 @@ if [[ ! -f before_deploy ]]; then
   # Clean test and UI packages
   npm prune --production
   npm install duniter-ui --save --production
+  npm install duniter-bma --save --production
+  npm install duniter-crawler --save --production
+  npm install duniter-keypair --save --production
+  npm install duniter-prover --save --production
   rm -Rf node_modules/duniter-ui/node_modules
 
   SRC=`pwd`
-- 
GitLab