Skip to content

Commit b0a1d7d

Browse files
feat: change action done message
1 parent 9a78aa3 commit b0a1d7d

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/__tests__/actions/with.action.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,7 @@ describe('With action', () => {
169169
2,
170170
`\n${emoji.get('tada')} All tasks for ${chalk.yellow(
171171
project.getAlias(),
172-
)} has been executed! Don't worry. Be happy! ${emoji.emojify(
173-
':grin: :computer: :thought_balloon: :moneybag:',
174-
)}\n`,
172+
)} has been executed!\n`,
175173
);
176174
});
177175
});

src/lib/ui/messages.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ export const WITH_ACTION_STARTED = `\nRunning your funny project tasks...\n`;
3838
export const WITH_ACTION_DONE = (project: Project) =>
3939
`\n${emoji.get('tada')} All tasks for ${chalk.yellow(
4040
project.getAlias(),
41-
)} has been executed! Don't worry. Be happy! ${emoji.emojify(
42-
':grin: :computer: :thought_balloon: :moneybag:',
43-
)}\n`;
41+
)} has been executed!\n`;
4442

4543
// Task execution
4644
export const TASK_EXECUTION_STARTED = (task: Task) =>

0 commit comments

Comments
 (0)