From 5c22a23754c0eecc1898078dda118ea3a8b29ad2 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 12 Nov 2015 12:00:59 -0800 Subject: [PATCH] perform package publish in series rather than parallel --- scripts/publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/publish.js b/scripts/publish.js index 32544b4346..71938f7d8e 100755 --- a/scripts/publish.js +++ b/scripts/publish.js @@ -184,7 +184,7 @@ function publish() { done(); }); }; - }), 4, function (err) { + }), 1, function (err) { onError(err); ship(); }); @@ -205,7 +205,7 @@ function ship() { execSync("npm dist-tag rm " + name + " prerelease", true); execSync("npm dist-tag add " + name + "@" + NEW_VERSION + " stable"); }; - }), 4, function (err) { + }), 1, function (err) { onError(err); execSync("git push", true); execSync("git push --tags", true);