@tolinax/ayoune-cli 2024.3.1 → 2024.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6,6 +6,6 @@ import { createProgram } from "./lib/commands/createProgram.js";
|
|
|
6
6
|
//Create new command instance
|
|
7
7
|
const program = new Command();
|
|
8
8
|
initializeSettings();
|
|
9
|
-
//Setup spinner
|
|
10
|
-
export const spinner = createSpinner("Getting data...");
|
|
9
|
+
//Setup spinner - output to stderr so stdout stays clean for piping
|
|
10
|
+
export const spinner = createSpinner("Getting data...", { stream: process.stderr });
|
|
11
11
|
createProgram(program);
|