@stacksjs/cli 0.65.0 → 0.67.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/dist/index.js +21640 -12
- package/dist/utils.d.ts +1 -1
- package/package.json +11 -13
- package/dist/index.js.map +0 -120
- package/src/actions/index.ts +0 -1
- package/src/actions/install.ts +0 -41
- package/src/app.ts +0 -777
- package/src/cli.ts +0 -30
- package/src/command.ts +0 -54
- package/src/console.ts +0 -4
- package/src/exec.ts +0 -140
- package/src/helpers.ts +0 -79
- package/src/index.ts +0 -10
- package/src/parse.ts +0 -182
- package/src/run.ts +0 -112
- package/src/spinner.ts +0 -3
- package/src/utils.ts +0 -83
package/dist/utils.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ import { type Collection } from "@stacksjs/collections";
|
|
|
2
2
|
export { align, box, centerAlign, colorize, colors, getColor, leftAlign, rightAlign, stripAnsi } from "consola/utils";
|
|
3
3
|
export * as kolorist from "kolorist";
|
|
4
4
|
export { ansi256, ansi256Bg, bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgLightBlue, bgLightCyan, bgLightGray, bgLightGreen, bgLightMagenta, bgLightRed, bgLightYellow, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, cyan, dim, gray, green, hidden, inverse, italic, lightBlue, lightCyan, lightGray, lightGreen, lightMagenta, lightRed, lightYellow, link, magenta, red, reset, strikethrough, stripColors, trueColor, trueColorBg, underline, white, yellow } from "kolorist";
|
|
5
|
-
export declare const quotes: Collection<string>;
|
|
5
|
+
export declare const quotes: Collection<string[]>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.67.0",
|
|
5
5
|
"description": "TypeScript framework for CLI artisans. Build beautiful console apps with ease.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
|
|
@@ -34,17 +34,15 @@
|
|
|
34
34
|
],
|
|
35
35
|
"exports": {
|
|
36
36
|
".": {
|
|
37
|
-
"bun": "./src/index.ts",
|
|
38
37
|
"import": "./dist/index.js"
|
|
39
38
|
},
|
|
40
39
|
"./*": {
|
|
41
|
-
"bun": "./*",
|
|
42
40
|
"import": "./dist/*"
|
|
43
41
|
}
|
|
44
42
|
},
|
|
45
43
|
"module": "dist/index.js",
|
|
46
44
|
"types": "dist/index.d.ts",
|
|
47
|
-
"files": ["README.md", "dist"
|
|
45
|
+
"files": ["README.md", "dist"],
|
|
48
46
|
"scripts": {
|
|
49
47
|
"build": "bun build.ts",
|
|
50
48
|
"typecheck": "bun tsc --noEmit",
|
|
@@ -54,14 +52,14 @@
|
|
|
54
52
|
"dependencies": {
|
|
55
53
|
"@antfu/install-pkg": "^0.4.1",
|
|
56
54
|
"@clack/core": "^0.3.4",
|
|
57
|
-
"@stacksjs/collections": "0.
|
|
58
|
-
"@stacksjs/config": "0.
|
|
59
|
-
"@stacksjs/error-handling": "0.
|
|
60
|
-
"@stacksjs/logging": "0.
|
|
61
|
-
"@stacksjs/path": "0.
|
|
62
|
-
"@stacksjs/types": "0.
|
|
63
|
-
"@stacksjs/utils": "0.
|
|
64
|
-
"@stacksjs/validation": "0.
|
|
55
|
+
"@stacksjs/collections": "0.67.0",
|
|
56
|
+
"@stacksjs/config": "0.67.0",
|
|
57
|
+
"@stacksjs/error-handling": "0.67.0",
|
|
58
|
+
"@stacksjs/logging": "0.67.0",
|
|
59
|
+
"@stacksjs/path": "0.67.0",
|
|
60
|
+
"@stacksjs/types": "0.67.0",
|
|
61
|
+
"@stacksjs/utils": "0.67.0",
|
|
62
|
+
"@stacksjs/validation": "0.67.0",
|
|
65
63
|
"cac": "^6.7.14",
|
|
66
64
|
"consola": "^3.2.3",
|
|
67
65
|
"kolorist": "1.8.0",
|
|
@@ -69,7 +67,7 @@
|
|
|
69
67
|
"prompts": "^2.4.2"
|
|
70
68
|
},
|
|
71
69
|
"devDependencies": {
|
|
72
|
-
"@stacksjs/development": "0.
|
|
70
|
+
"@stacksjs/development": "0.67.0",
|
|
73
71
|
"@types/prompts": "^2.4.9"
|
|
74
72
|
}
|
|
75
73
|
}
|