@xano/cli 0.0.95-beta.6 → 0.0.95-beta.8
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/commands/workspace/push/index.js +2 -2
- package/oclif.manifest.json +2218 -2218
- package/package.json +2 -2
|
@@ -661,7 +661,7 @@ Push functions but exclude test files
|
|
|
661
661
|
const color = op.action === 'update' || op.action === 'update_field' ? 'yellow' : 'green';
|
|
662
662
|
const actionLabel = op.action.toUpperCase();
|
|
663
663
|
this.log(` ${ux.colorize(color, actionLabel.padEnd(16))} ${op.type.padEnd(18)} ${op.name}`);
|
|
664
|
-
if (op.details) {
|
|
664
|
+
if (verbose && op.details) {
|
|
665
665
|
this.log(` ${' '.repeat(16)} ${' '.repeat(18)} ${ux.colorize('dim', op.details)}`);
|
|
666
666
|
}
|
|
667
667
|
if (verbose && op.reason) {
|
|
@@ -682,7 +682,7 @@ Push functions but exclude test files
|
|
|
682
682
|
const color = op.action === 'truncate' || op.action === 'alter_field' ? 'yellow' : 'red';
|
|
683
683
|
const actionLabel = op.action.toUpperCase();
|
|
684
684
|
this.log(` ${ux.colorize(color, actionLabel.padEnd(16))} ${op.type.padEnd(18)} ${op.name}`);
|
|
685
|
-
if (op.details) {
|
|
685
|
+
if (verbose && op.details) {
|
|
686
686
|
this.log(` ${' '.repeat(16)} ${' '.repeat(18)} ${ux.colorize('dim', op.details)}`);
|
|
687
687
|
}
|
|
688
688
|
if (verbose && op.reason) {
|