From d80bfc5c510491293371cae47093036fb0b28122 Mon Sep 17 00:00:00 2001
From: usermeme <romanyankovich98@gmail.com>
Date: Wed, 24 Jul 2019 12:23:47 +0300
Subject: [PATCH] feat: add detach mode

---
 BuildBotLib/NPM.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/BuildBotLib/NPM.py b/BuildBotLib/NPM.py
index 51ff3bc..732a30a 100644
--- a/BuildBotLib/NPM.py
+++ b/BuildBotLib/NPM.py
@@ -58,7 +58,8 @@ def getFactory():
         steps.ShellCommand(
             command = [
                 'npm',
-                "start"
+                "run",
+                "start:detach"
                 ],
             doStepIf = lambda step : not isStopForce(step),
             haltOnFailure = True,