@tolinax/ayoune-cli 2024.4.0 → 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.
Files changed (2) hide show
  1. package/index.js +2 -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-cli",
3
- "version": "2024.4.0",
3
+ "version": "2024.5.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./index.js",