From c904c9437807c756152120c942b99baa0881a47e Mon Sep 17 00:00:00 2001 From: Suraj B M Date: Tue, 2 Jun 2026 12:24:11 +0530 Subject: [PATCH] fix: remove redundant enable variable --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index eb47d06..2f9cc3e 100755 --- a/index.ts +++ b/index.ts @@ -39,7 +39,7 @@ const pm2edit = new Command("pm2edit") } }) - const fileContent = `const enabled = false;\n\nmodule.exports = {apps: ${JSON.stringify(data, null, 2)}}` + const fileContent = `module.exports = {apps: ${JSON.stringify(data, null, 2)}}` const formattedContent = await prettier.format(fileContent, { parser: "typescript" });