Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/cli/src/commands/list.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export class ListTasksCommand extends Command {
);
}
} else if (event.type === 'error' && event.error) {
console.error(chalk.red(`\n⚠ Watch error: ${event.error.message}`));
console.error(chalk.red(`\n⚠ Watch error: ${event.error.message}`));
}
},
{ tag: options.tag }
Expand Down
10 changes: 5 additions & 5 deletions scripts/modules/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -4839,7 +4839,7 @@ Examples:
// Show deprecation warning
console.warn(
chalk.yellow(
'⚠ Warning: "tm add-tag" is deprecated. Use "tm tags add" instead.'
'⚠ Warning: "tm add-tag" is deprecated. Use "tm tags add" instead.'
)
);
console.log(
Expand Down Expand Up @@ -4993,7 +4993,7 @@ Examples:
// Show deprecation warning
console.warn(
chalk.yellow(
'⚠ Warning: "tm delete-tag" is deprecated. Use "tm tags remove" instead.'
'⚠ Warning: "tm delete-tag" is deprecated. Use "tm tags remove" instead.'
)
);
console.log(
Expand Down Expand Up @@ -5065,7 +5065,7 @@ Examples:
// Show deprecation warning
console.warn(
chalk.yellow(
'⚠ Warning: "tm use-tag" is deprecated. Use "tm tags use" instead.'
'⚠ Warning: "tm use-tag" is deprecated. Use "tm tags use" instead.'
)
);
console.log(
Expand Down Expand Up @@ -5123,7 +5123,7 @@ Examples:
// Show deprecation warning
console.warn(
chalk.yellow(
'⚠ Warning: "tm rename-tag" is deprecated. Use "tm tags rename" instead.'
'⚠ Warning: "tm rename-tag" is deprecated. Use "tm tags rename" instead.'
)
);
console.log(
Expand Down Expand Up @@ -5187,7 +5187,7 @@ Examples:
// Show deprecation warning
console.warn(
chalk.yellow(
'⚠ Warning: "tm copy-tag" is deprecated. Use "tm tags copy" instead.'
'⚠ Warning: "tm copy-tag" is deprecated. Use "tm tags copy" instead.'
)
);
console.log(
Expand Down
2 changes: 1 addition & 1 deletion scripts/modules/error-formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ export function displayFormattedError(error, options = {}) {
* @param {string[]} [hints] - Optional hints
*/
export function displayWarning(message, hints = []) {
let content = chalk.yellow.bold('⚠ Warning\n\n');
let content = chalk.yellow.bold('⚠ Warning\n\n');
content += chalk.white(message);

if (hints && hints.length > 0) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/modules/prompt-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class PromptManager {
this.validatePrompt = this.ajv.compile(promptTemplateSchema);
log('debug', '✓ JSON schema validation enabled');
} catch (error) {
log('warn', `⚠ Schema validation disabled: ${error.message}`);
log('warn', `⚠ Schema validation disabled: ${error.message}`);
this.validatePrompt = () => true; // Fallback to no validation
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/modules/task-manager/migrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const __dirname = path.dirname(__filename);
// Create a simple log wrapper for CLI use
const log = createLogWrapper({
info: (msg) => console.log(chalk.blue('ℹ'), msg),
warn: (msg) => console.log(chalk.yellow('⚠'), msg),
warn: (msg) => console.log(chalk.yellow('⚠'), msg),
error: (msg) => console.error(chalk.red('✗'), msg),
success: (msg) => console.log(chalk.green('✓'), msg)
});
Expand Down
4 changes: 2 additions & 2 deletions scripts/modules/task-manager/tag-management.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ async function deleteTag(
if (!yes && taskCount > 0 && outputFormat === 'text') {
console.log(
boxen(
chalk.yellow.bold('⚠ WARNING: Tag Deletion') +
chalk.yellow.bold('⚠ WARNING: Tag Deletion') +
`\n\nYou are about to delete tag "${chalk.cyan(tagName)}"` +
`\nThis will permanently delete ${chalk.red.bold(taskCount)} tasks` +
'\n\nThis action cannot be undone!',
Expand Down Expand Up @@ -417,7 +417,7 @@ async function deleteTag(
`\n\nTag Name: ${chalk.cyan(tagName)}` +
`\nTasks Deleted: ${chalk.yellow(taskCount)}` +
(isCurrentTag
? `\n${chalk.yellow('⚠ Switched current tag to "master"')}`
? `\n${chalk.yellow('⚠ Switched current tag to "master"')}`
: ''),
{
padding: 1,
Expand Down
Loading