@tolinax/ayoune-cli 2024.4.0 → 2024.6.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 +3 -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.6.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -107,6 +107,7 @@
107
107
  }
108
108
  },
109
109
  "dependencies": {
110
+ "@types/jmespath": "^0.15.2",
110
111
  "axios": "^1.6.7",
111
112
  "axios-retry": "^4.0.0",
112
113
  "chalk": "^5.3.0",
@@ -122,6 +123,7 @@
122
123
  "inquirer-interrupted-prompt": "^3.0.0",
123
124
  "inquirer-search-list": "^1.2.6",
124
125
  "inquirer-table-input": "^0.0.3",
126
+ "jmespath": "^0.16.0",
125
127
  "js-yaml": "^4.1.0",
126
128
  "jsonwebtoken": "^9.0.2",
127
129
  "lodash": "^4.17.21",