jira-sprinter 2.5.0 → 2.5.1
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/main.js +2 -2
- package/package.json +1 -1
- package/src/jira.ts +1 -1
package/dist/main.js
CHANGED
|
@@ -47675,7 +47675,7 @@ var Jira = class {
|
|
|
47675
47675
|
};
|
|
47676
47676
|
this.availableTasks = [
|
|
47677
47677
|
{ ...this.devTask, checked: true },
|
|
47678
|
-
{ ...this.qeTask, checked:
|
|
47678
|
+
{ ...this.qeTask, checked: false },
|
|
47679
47679
|
{ ...this.upstreamTask, checked: false },
|
|
47680
47680
|
{ ...this.rootCauseAnalysisTask, checked: false },
|
|
47681
47681
|
{ ...this.preliminaryTestingTask, checked: false },
|
|
@@ -53921,7 +53921,7 @@ var issueStatusSchema = external_exports.union([
|
|
|
53921
53921
|
});
|
|
53922
53922
|
|
|
53923
53923
|
// package.json
|
|
53924
|
-
var version2 = "2.5.
|
|
53924
|
+
var version2 = "2.5.1";
|
|
53925
53925
|
|
|
53926
53926
|
// src/cli.ts
|
|
53927
53927
|
function cli() {
|
package/package.json
CHANGED
package/src/jira.ts
CHANGED
|
@@ -59,7 +59,7 @@ export class Jira {
|
|
|
59
59
|
};
|
|
60
60
|
readonly availableTasks = [
|
|
61
61
|
{ ...this.devTask, checked: true },
|
|
62
|
-
{ ...this.qeTask, checked:
|
|
62
|
+
{ ...this.qeTask, checked: false },
|
|
63
63
|
{ ...this.upstreamTask, checked: false },
|
|
64
64
|
{ ...this.rootCauseAnalysisTask, checked: false },
|
|
65
65
|
{ ...this.preliminaryTestingTask, checked: false },
|