chore: run format and fix CI

This commit is contained in:
Ralph Khreish
2025-09-24 11:00:04 +02:00
parent c911608f60
commit 4c2801d5eb
3 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
{ {
"mode": "pre", "mode": "exit",
"tag": "rc", "tag": "rc",
"initialVersions": { "initialVersions": {
"task-master-ai": "0.27.0", "task-master-ai": "0.27.0",

View File

@@ -143,7 +143,10 @@ function onPostConvertRulesProfile(targetDir, assetsDir) {
const zedConfig = transformToZedFormat(mcpConfig); const zedConfig = transformToZedFormat(mcpConfig);
// Add "source": "custom" to task-master-ai server for Zed // 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'; zedConfig['context_servers']['task-master-ai'].source = 'custom';
} }

View File

@@ -114,7 +114,7 @@ describe('Commands Module - CLI Setup and Integration', () => {
test('should return Commander program instance', () => { test('should return Commander program instance', () => {
const program = setupCLI(); const program = setupCLI();
expect(program).toBeDefined(); 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', () => { test('should return version that matches package.json when TM_PUBLIC_VERSION is set', () => {