@stacksjs/buddy 0.58.71 → 0.58.73
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/chunk-1a569f35f66ae151.js +10945 -0
- package/dist/{chunk-59a9de11428ba763.js → chunk-bf054cfbc9cf2201.js} +4 -4
- package/dist/cli.js +42 -3916
- package/dist/index.js +8 -2
- package/dist/stacks +0 -0
- package/package.json +3 -3
- package/src/cli.ts +35 -87
- package/src/commands/check.ts +45 -0
- package/src/commands/create.ts +6 -0
- package/src/commands/generate.ts +10 -0
- package/src/commands/index.ts +3 -0
- package/src/commands/ports.ts +73 -0
- package/src/commands/projects.ts +59 -0
- package/src/commands/setup.ts +9 -54
- package/src/commands/upgrade.ts +51 -4
- package/dist/chunk-89229d657386eb70.js +0 -1932
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// ../../../../node_modules/consola/dist/core.mjs
|
|
2
2
|
var isObject = function(value) {
|
|
3
3
|
return value !== null && typeof value === "object";
|
|
4
4
|
};
|
|
@@ -377,7 +377,7 @@ Consola.prototype.mock = Consola.prototype.mockTypes;
|
|
|
377
377
|
Consola.prototype.pause = Consola.prototype.pauseLogs;
|
|
378
378
|
Consola.prototype.resume = Consola.prototype.resumeLogs;
|
|
379
379
|
|
|
380
|
-
//
|
|
380
|
+
// ../../../../node_modules/consola/dist/shared/consola.06ad8a64.mjs
|
|
381
381
|
import {formatWithOptions} from "util";
|
|
382
382
|
import {sep} from "path";
|
|
383
383
|
var parseStack = function(stack) {
|
|
@@ -434,7 +434,7 @@ class BasicReporter {
|
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
436
|
|
|
437
|
-
//
|
|
437
|
+
// ../../../../node_modules/consola/dist/utils.mjs
|
|
438
438
|
import * as tty from "tty";
|
|
439
439
|
var replaceClose = function(index, string, close, replace, head = string.slice(0, Math.max(0, index)) + replace, tail = string.slice(Math.max(0, index + close.length)), next = tail.indexOf(close)) {
|
|
440
440
|
return head + (next < 0 ? tail : replaceClose(next, tail, close, replace));
|
|
@@ -644,7 +644,7 @@ var defaultStyle = {
|
|
|
644
644
|
marginBottom: 1
|
|
645
645
|
};
|
|
646
646
|
|
|
647
|
-
//
|
|
647
|
+
// ../../../../node_modules/consola/dist/shared/consola.36c0034f.mjs
|
|
648
648
|
import process$1 from "process";
|
|
649
649
|
var detectProvider = function(env2) {
|
|
650
650
|
for (const provider of providers) {
|