From f3254e8ba862c57b574cd0b76f4f248006d8d799 Mon Sep 17 00:00:00 2001 From: Matt Lyons Date: Thu, 22 Feb 2024 13:16:24 -0600 Subject: [PATCH] Add missing function to stop script import (#779) --- stop-processes.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stop-processes.mjs b/stop-processes.mjs index 067b28a317..72fbff9612 100644 --- a/stop-processes.mjs +++ b/stop-processes.mjs @@ -1,7 +1,7 @@ /* eslint-disable no-console */ import { exec } from 'child_process'; import fkill from 'fkill'; -import { indexOf, lastIndexOf } from 'platform-bible-utils'; +import { indexOf, lastIndexOf, includes } from 'platform-bible-utils'; // All processes with any of these terms in the command line will be killed const searchTerms = ['electronmon', 'esbuild', 'nodemon', 'vite', 'webpack', 'extension-host'];