From 4c2801d5eb742457142eae087296f16113c66b6a Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Wed, 24 Sep 2025 11:00:04 +0200 Subject: [PATCH] chore: run format and fix CI --- .changeset/pre.json | 2 +- src/profiles/zed.js | 5 ++++- tests/unit/commands.test.js | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c73afc1d..850e9c0b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -1,5 +1,5 @@ { - "mode": "pre", + "mode": "exit", "tag": "rc", "initialVersions": { "task-master-ai": "0.27.0", diff --git a/src/profiles/zed.js b/src/profiles/zed.js index 66e52b8b..04d30093 100644 --- a/src/profiles/zed.js +++ b/src/profiles/zed.js @@ -143,7 +143,10 @@ function onPostConvertRulesProfile(targetDir, assetsDir) { const zedConfig = transformToZedFormat(mcpConfig); // Add "source": "custom" to task-master-ai server for Zed - if (zedConfig['context_servers'] && zedConfig['context_servers']['task-master-ai']) { + if ( + zedConfig['context_servers'] && + zedConfig['context_servers']['task-master-ai'] + ) { zedConfig['context_servers']['task-master-ai'].source = 'custom'; } diff --git a/tests/unit/commands.test.js b/tests/unit/commands.test.js index d2ba2a30..19a9abb4 100644 --- a/tests/unit/commands.test.js +++ b/tests/unit/commands.test.js @@ -114,7 +114,7 @@ describe('Commands Module - CLI Setup and Integration', () => { test('should return Commander program instance', () => { const program = setupCLI(); expect(program).toBeDefined(); - expect(program.name()).toBe('dev'); + expect(program.name()).toBe('task-master'); }); test('should return version that matches package.json when TM_PUBLIC_VERSION is set', () => {