@stacksjs/cli 0.70.23 → 0.70.25

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/dist/install.d.ts DELETED
@@ -1,11 +0,0 @@
1
- declare interface InstallPackageOptions {
2
- cwd?: string
3
- dev?: boolean
4
- silent?: boolean
5
- packageManager?: string
6
- packageManagerVersion?: string
7
- preferOffline?: boolean
8
- additionalArgs?: string[]
9
- }
10
- export declare function installPackage(name: string, options?: InstallPackageOptions): Promise<any>;
11
- export declare function installStack(name: string, options?: InstallPackageOptions): Promise<any>;
package/dist/run.d.ts DELETED
@@ -1,6 +0,0 @@
1
- import type { CliOptions, CommandError, Readable, Subprocess } from '@stacksjs/types';
2
-
3
- export declare function runCommand(command: string, options?: CliOptions): Promise<Result<Subprocess, CommandError>>;
4
- export declare function runProcess(command: string, options?: CliOptions): Promise<Result<Subprocess, CommandError>>;
5
- export declare function runCommandSync(command: string, options?: CliOptions): Promise<string>;
6
- export declare function runCommands(commands: string[], options?: CliOptions): Promise<Ok<Subprocess<Writable, Readable, Readable>, Error>[]>;
package/dist/spinner.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const spinner: typeof ora;
package/dist/utils.d.ts DELETED
@@ -1,65 +0,0 @@
1
- import type { Collection } from '@stacksjs/collections';
2
-
3
- export declare let quotes: Collection<string[]>;
4
-
5
- export {
6
- align,
7
- box,
8
- centerAlign,
9
- colorize,
10
- colors,
11
- getColor,
12
- leftAlign,
13
- rightAlign,
14
- stripAnsi,
15
- } from 'consola/utils'
16
- export {
17
- ansi256,
18
- ansi256Bg,
19
- bgBlack,
20
- bgBlue,
21
- bgCyan,
22
- bgGray,
23
- bgGreen,
24
- bgLightBlue,
25
- bgLightCyan,
26
- bgLightGray,
27
- bgLightGreen,
28
- bgLightMagenta,
29
- bgLightRed,
30
- bgLightYellow,
31
- bgMagenta,
32
- bgRed,
33
- bgWhite,
34
- bgYellow,
35
- black,
36
- blue,
37
- bold,
38
- cyan,
39
- dim,
40
- gray,
41
- green,
42
- hidden,
43
- inverse,
44
- italic,
45
- lightBlue,
46
- lightCyan,
47
- lightGray,
48
- lightGreen,
49
- lightMagenta,
50
- lightRed,
51
- lightYellow,
52
- link,
53
- magenta,
54
- red,
55
- reset,
56
- strikethrough,
57
- stripColors,
58
- trueColor,
59
- trueColorBg,
60
- underline,
61
- white,
62
- yellow,
63
- } from 'kolorist'
64
-
65
- export * as kolorist from 'kolorist'