We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41745df commit f59873aCopy full SHA for f59873a
packages/cli/src/plugins/logger.ts
@@ -187,12 +187,17 @@ export function logger({
187
commands: state.commandQueue.map((cmd) => cmd.commandName).join(' → '),
188
});
189
}
190
- function beforeCommand({ state, data }: HookPayload<'beforeCommand'>) {
+ function beforeCommand({
191
+ state,
192
+ command,
193
+ data,
194
+ params,
195
+ }: HookPayload<'beforeCommand'>) {
196
if (!state.command) return;
197
log(state.client, 'Executing command', {
- name: state.command.commandName,
- params: state.params,
198
+ name: command.commandName,
199
data,
200
201
step: `${state.i + 1}/${state.commandQueue.length}`,
202
203
0 commit comments