vtasks-automate-cli 0.6.3 → 0.6.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.
Files changed (2) hide show
  1. package/content/index.js +1 -1
  2. package/package.json +1 -1
package/content/index.js CHANGED
@@ -103,7 +103,7 @@ async function main() {
103
103
  if (branch != "qa" && branch != "dev" && branch != "master") {
104
104
  issueNumber = Number(branch.split("_")[0]);
105
105
  console.log(LOG_COLORS.GREEN, `Currently working on issue: ${issueNumber}`);
106
- const response = await fetch(`${config.vTasksUrl}`, {
106
+ const response = await fetch(VTASKS_URL, {
107
107
  method: "POST",
108
108
  body: JSON.stringify({
109
109
  projectName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vtasks-automate-cli",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
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"