chore: run format

This commit is contained in:
Ralph Khreish
2025-07-22 21:41:46 +03:00
parent e5440dd884
commit 8c9889be1a
3 changed files with 17 additions and 15 deletions

View File

@@ -3,10 +3,7 @@
"task-master-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"task-master-ai"
]
"args": ["-y", "task-master-ai"]
}
}
}

View File

@@ -63,9 +63,11 @@ export const kiroProfile = createProfile({
// Copy all .kiro.hook files
if (fs.existsSync(hooksSourceDir)) {
const hookFiles = fs.readdirSync(hooksSourceDir).filter(f => f.endsWith('.kiro.hook'));
const hookFiles = fs
.readdirSync(hooksSourceDir)
.filter((f) => f.endsWith('.kiro.hook'));
hookFiles.forEach(file => {
hookFiles.forEach((file) => {
const sourcePath = path.join(hooksSourceDir, file);
const targetPath = path.join(hooksTargetDir, file);
@@ -73,7 +75,10 @@ export const kiroProfile = createProfile({
});
if (hookFiles.length > 0) {
log('info', `[Kiro] Installed ${hookFiles.length} Taskmaster hooks in .kiro/hooks/`);
log(
'info',
`[Kiro] Installed ${hookFiles.length} Taskmaster hooks in .kiro/hooks/`
);
}
}
}