From b1a805851cbdd7b830fe462d1e4254d9c4bb2a61 Mon Sep 17 00:00:00 2001 From: Daniel Brain Date: Thu, 6 Apr 2017 13:28:01 -0700 Subject: [PATCH] Reinstall dependencies before publishing --- publish.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/publish.sh b/publish.sh index 619d5119..04dc0233 100755 --- a/publish.sh +++ b/publish.sh @@ -2,6 +2,9 @@ set -e; +rm -rf node_modules/cross-domain-safe-weakmap node_modules/sync-browser-mocks +npm install cross-domain-safe-weakmap sync-browser-mocks + gulp build; git add dist;