jira-sprinter 1.0.3 → 2.0.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/README.md +3 -1
- package/dist/main.js +23322 -27282
- package/package.json +13 -13
- package/src/cli.ts +153 -85
- package/src/jira.ts +58 -27
- package/src/util.ts +5 -1
- package/vitest.config.ts +13 -0
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ JIRA_API_TOKEN="exaple-token"
|
|
|
34
34
|
|
|
35
35
|
> [!TIP]
|
|
36
36
|
>
|
|
37
|
-
> You can also set default values for the `assignee`, `board` in the `~/.config/jira-sprinter/.env` or `~/.env.jira-sprinter` file:
|
|
37
|
+
> You can also set default values for the `assignee`, `board` and more in the `~/.config/jira-sprinter/.env` or `~/.env.jira-sprinter` file:
|
|
38
38
|
>
|
|
39
39
|
> ```bash
|
|
40
40
|
> # ~/.config/jira-sprinter/.env
|
|
@@ -69,6 +69,8 @@ Options:
|
|
|
69
69
|
-V, --version output the version number
|
|
70
70
|
-b, --board [board] Jira Board ID
|
|
71
71
|
-a, --assignee [assignee] Jira Assignee (default: "<user-login>@redhat.com")
|
|
72
|
+
-y, --yolo YOLO mode, dangerously skip all questions, apply
|
|
73
|
+
default values (use with caution!) (default: false)
|
|
72
74
|
-n, --nocolor Disable color output (default: false)
|
|
73
75
|
-x, --dry dry run
|
|
74
76
|
-h, --help display help for command
|