@dbcube/cli 5.0.3 → 5.0.4

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/bun.lock CHANGED
@@ -4,7 +4,7 @@
4
4
  "": {
5
5
  "name": "@dbcube/cli",
6
6
  "dependencies": {
7
- "@dbcube/schema-builder": "^5.0.4",
7
+ "@dbcube/schema-builder": "^5.0.5",
8
8
  "@inquirer/prompts": "^8.2.0",
9
9
  "alwait": "^1.0.0",
10
10
  "chalk": "4.1.2",
@@ -21,9 +21,9 @@
21
21
  "ora": "5.4.1",
22
22
  },
23
23
  "packages": {
24
- "@dbcube/core": ["@dbcube/core@5.0.3", "", { "dependencies": { "chalk": "4.1.2", "deasync": "^0.1.31", "follow-redirects": "^1.15.11", "ora": "5.4.1", "unzipper": "^0.12.3" }, "bin": { "dbcube-core": "dist/bin.cjs" } }, "sha512-N0QC9z8T3HK8FnoxAJNxlQSVXU4naFiLeIOtbr45G9Yy/J93OV60xxiQwz6Dwob1aScBNasW7Kgu2rlHb+PTFQ=="],
24
+ "@dbcube/core": ["@dbcube/core@5.0.5", "", { "dependencies": { "chalk": "4.1.2", "deasync": "^0.1.31", "follow-redirects": "^1.15.11", "ora": "5.4.1", "unzipper": "^0.12.3" }, "bin": { "dbcube-core": "dist/bin.cjs" } }, "sha512-uwj1yyL8MxMPEOB5JlefqSZk4DO8wtQQqGHwDBt60mTPD/QJ4O1dm8vFtyKn6uNy2n7hk7OlioHdNL62Ma/ZUw=="],
25
25
 
26
- "@dbcube/schema-builder": ["@dbcube/schema-builder@5.0.4", "", { "dependencies": { "@dbcube/core": "^5.0.3", "chalk": "^5.6.2", "ora": "^9.1.0" } }, "sha512-R1hFIoWDWhKOH6iGmhrhWPehxq6SqZnTtopl38daVv2UrGC/VnSRXUrENjbDkRLzKZI+5S9194Odfy1LTn+/sQ=="],
26
+ "@dbcube/schema-builder": ["@dbcube/schema-builder@5.0.5", "", { "dependencies": { "@dbcube/core": "^5.0.5", "chalk": "^5.6.2", "ora": "^9.1.0" } }, "sha512-69SAnqzVIQCBjuwUW/kZGw57SHgtuEDiuO9xARlUcjoy2H5hl1Me2L7i8DFKEN4eH6vyykLN3op8pMSXjkSXIg=="],
27
27
 
28
28
  "@inquirer/ansi": ["@inquirer/ansi@2.0.3", "", {}, "sha512-g44zhR3NIKVs0zUesa4iMzExmZpLUdTLRMCStqX3GE5NT6VkPcxQGJ+uC8tDgBUC/vB1rUhUd55cOf++4NZcmw=="],
29
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbcube/cli",
3
- "version": "5.0.3",
3
+ "version": "5.0.4",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dbcube": "node src/index.js"
@@ -13,7 +13,7 @@
13
13
  "license": "ISC",
14
14
  "description": "",
15
15
  "dependencies": {
16
- "@dbcube/schema-builder": "^5.0.4",
16
+ "@dbcube/schema-builder": "^5.0.5",
17
17
  "@inquirer/prompts": "^8.2.0",
18
18
  "alwait": "^1.0.0",
19
19
  "chalk": "4.1.2",
@@ -1,4 +1,4 @@
1
- const { default: chalk } = require('chalk');
1
+ const chalk = require('chalk');
2
2
 
3
3
  /**
4
4
  * Shows help information with all available Dbcube CLI commands
@@ -1,11 +1,11 @@
1
- const { default: chalk } = require('chalk');
2
- const { default: alwait } = require('alwait');
1
+ const chalk = require('chalk');
2
+ const alwait = require('alwait');
3
3
  const ConfigFileUtils = require('../../../../utils/ConfigFileUtils');
4
4
  const path = require('path');
5
5
 
6
6
  // Importar las funciones de @inquirer/prompts
7
7
  const { select, input, password, confirm, Separator } = require('@inquirer/prompts');
8
- const { default: ora } = require('ora');
8
+ const ora = require('ora');
9
9
  const Config = require('../../../../utils/Config');
10
10
 
11
11
  // Obtener los argumentos pasados al comando
@@ -1,7 +1,7 @@
1
- const { default: chalk } = require('chalk');
2
- const { default: alwait } = require('alwait');
3
- const { default: ora } = require('ora');
4
- const { default: Schema } = require('@dbcube/schema-builder');
1
+ const chalk = require('chalk');
2
+ const alwait = require('alwait');
3
+ const ora = require('ora');
4
+ const Schema = require('@dbcube/schema-builder');
5
5
 
6
6
  // Obtener los argumentos pasados al comando
7
7
  const args = process.argv.slice(2);
@@ -1,8 +1,8 @@
1
- const { default: chalk } = require('chalk');
2
- const { default: alwait } = require('alwait');
1
+ const chalk = require('chalk');
2
+ const alwait = require('alwait');
3
3
  const ConfigFileUtils = require('../../../../utils/ConfigFileUtils');
4
4
  const { select, input } = require('@inquirer/prompts');
5
- const { default: ora } = require('ora');
5
+ const ora = require('ora');
6
6
  const { execSync } = require('child_process');
7
7
  const path = require('path');
8
8
 
@@ -1,4 +1,4 @@
1
- const { default: Schema } = require('@dbcube/schema-builder');
1
+ const Schema = require('@dbcube/schema-builder');
2
2
  const ConfigFileUtils = require('./../../../utils/ConfigFileUtils');
3
3
 
4
4
  async function main() {
@@ -1,4 +1,4 @@
1
- const { default: Schema } = require('@dbcube/schema-builder');
1
+ const Schema = require('@dbcube/schema-builder');
2
2
  const ConfigFileUtils = require('./../../../utils/ConfigFileUtils');
3
3
 
4
4
  async function main() {
@@ -1,4 +1,4 @@
1
- const { default: Schema } = require('@dbcube/schema-builder');
1
+ const Schema = require('@dbcube/schema-builder');
2
2
  const ConfigFileUtils = require('./../../../utils/ConfigFileUtils');
3
3
 
4
4
  async function main() {
@@ -1,4 +1,4 @@
1
- const { default: Schema } = require('@dbcube/schema-builder');
1
+ const Schema = require('@dbcube/schema-builder');
2
2
  const ConfigFileUtils = require('./../../../utils/ConfigFileUtils');
3
3
 
4
4
  async function main() {
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- const { default: chalk } = require('chalk');
3
- const { default: ora } = require('ora');
2
+ const chalk = require('chalk');
3
+ const ora = require('ora');
4
4
  const path = require('path');
5
5
  const fs = require('fs');
6
6
  const https = require('https');
@@ -1,6 +1,6 @@
1
1
  const path = require('path');
2
2
  const fs = require('fs');
3
- const { default: chalk } = require('chalk');
3
+ const chalk = require('chalk');
4
4
 
5
5
  /**
6
6
  * Muestra la versión actual del CLI de Dbcube
@@ -1,5 +1,5 @@
1
- const { default: chalk } = require('chalk');
2
- const { default: ora } = require('ora');
1
+ const chalk = require('chalk');
2
+ const ora = require('ora');
3
3
  const fs = require('fs');
4
4
  const path = require('path');
5
5