vtasks-automate-cli 0.4.8 → 0.5.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/init.js +3 -2
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -8,7 +8,7 @@ import path from "path";
|
|
|
8
8
|
import { fileURLToPath } from "url";
|
|
9
9
|
import { dirname } from "path";
|
|
10
10
|
|
|
11
|
-
const VTASKS_URL = "
|
|
11
|
+
const VTASKS_URL = "https://vtasks.venturing.com.ar/vTasks/api";
|
|
12
12
|
|
|
13
13
|
class ApiHelpers {
|
|
14
14
|
static async checkProjectName(projectName) {
|
|
@@ -19,7 +19,8 @@ class ApiHelpers {
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
const VTASKS_CONFIG_URL =
|
|
22
|
+
const VTASKS_CONFIG_URL =
|
|
23
|
+
"https://vtasks.venturing.com.ar/vTasks/api/project/action/track";
|
|
23
24
|
|
|
24
25
|
const LOG_COLORS = {
|
|
25
26
|
RED: "\x1b[31m",
|