From 859769ecfd3983b55fba73e1e76ebf8783d572de Mon Sep 17 00:00:00 2001 From: Julian Claus Date: Sat, 1 Jul 2023 12:58:54 +0200 Subject: [PATCH] fix: stderr component name --- src/library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library.js b/src/library.js index 1e083e0..c9840ee 100644 --- a/src/library.js +++ b/src/library.js @@ -27,7 +27,7 @@ export const createCommandNotFound = (command, notFoundText = 'command not found // Creates a "stderr" with the given formatter or text and name. It exits as // soon as the component has been mounted -export const createStderr = (formatterOrText, name = 'VueCommandSterr') => { +export const createStderr = (formatterOrText, name = 'VueCommandStderr') => { return createStdout(formatterOrText, name) }