@tarout/cli 0.1.4 → 0.2.1

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.
@@ -0,0 +1,15 @@
1
+ import {
2
+ confirm,
3
+ input,
4
+ password,
5
+ promptOrEmit,
6
+ select
7
+ } from "./chunk-J3H7LTFT.js";
8
+ import "./chunk-FS74WWHV.js";
9
+ export {
10
+ confirm,
11
+ input,
12
+ password,
13
+ promptOrEmit,
14
+ select
15
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tarout/cli",
3
- "version": "0.1.4",
4
- "description": "Tarout PaaS Command Line Interface",
3
+ "version": "0.2.1",
4
+ "description": "Tarout CLI the Saudi cloud platform for coding agents",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "tarout": "./bin/tarout"
@@ -42,7 +42,7 @@
42
42
  "typescript": "^5.6.0"
43
43
  },
44
44
  "engines": {
45
- "node": ">=18.0.0"
45
+ "node": "^24.14.1"
46
46
  },
47
47
  "repository": {
48
48
  "type": "git",
@@ -1,41 +0,0 @@
1
- // src/utils/spinner.ts
2
- import ora from "ora";
3
- var currentSpinner = null;
4
- function startSpinner(text) {
5
- if (currentSpinner) {
6
- currentSpinner.stop();
7
- }
8
- currentSpinner = ora(text).start();
9
- return currentSpinner;
10
- }
11
- function succeedSpinner(text) {
12
- if (currentSpinner) {
13
- currentSpinner.succeed(text);
14
- currentSpinner = null;
15
- }
16
- }
17
- function failSpinner(text) {
18
- if (currentSpinner) {
19
- currentSpinner.fail(text);
20
- currentSpinner = null;
21
- }
22
- }
23
- function stopSpinner() {
24
- if (currentSpinner) {
25
- currentSpinner.stop();
26
- currentSpinner = null;
27
- }
28
- }
29
- function updateSpinner(text) {
30
- if (currentSpinner) {
31
- currentSpinner.text = text;
32
- }
33
- }
34
-
35
- export {
36
- startSpinner,
37
- succeedSpinner,
38
- failSpinner,
39
- stopSpinner,
40
- updateSpinner
41
- };
@@ -1,14 +0,0 @@
1
- import {
2
- failSpinner,
3
- startSpinner,
4
- stopSpinner,
5
- succeedSpinner,
6
- updateSpinner
7
- } from "./chunk-GSKD67K4.js";
8
- export {
9
- failSpinner,
10
- startSpinner,
11
- stopSpinner,
12
- succeedSpinner,
13
- updateSpinner
14
- };