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.
Files changed (2) hide show
  1. package/init.js +3 -2
  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 = "http://localhost:3040";
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 = "http://localhost:3040/project/action/track";
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vtasks-automate-cli",
3
- "version": "0.4.8",
3
+ "version": "0.5.0",
4
4
  "description": "Automate your vTasks workflow with ease — move tasks between states without opening the app",
5
5
  "bin": {
6
6
  "vtasks-automate": "init.js"