fixdiscover 1.0.0 → 1.2.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 +4 -0
- package/dist/main.js +22988 -12512
- package/package.json +6 -5
- package/src/bugzilla.ts +42 -0
- package/src/cli.ts +63 -12
- package/src/jira.ts +57 -7
- package/src/linkfinder.ts +11 -11
- package/src/logger.ts +4 -4
- package/src/schema/bugzilla.ts +36 -0
- package/src/schema/link.ts +12 -0
- package/src/util.ts +21 -9
package/README.md
CHANGED
|
@@ -70,7 +70,9 @@ Options:
|
|
|
70
70
|
-V, --version output the version number
|
|
71
71
|
-c, --component [component] issue component
|
|
72
72
|
-u, --upstream [upstream] upstream project
|
|
73
|
+
--migrate migrate links from Bugzilla to Jira
|
|
73
74
|
-n, --nocolor disable color output (default: false)
|
|
75
|
+
-x, --dry dry run (default: false)
|
|
74
76
|
-h, --help display help for command
|
|
75
77
|
```
|
|
76
78
|
|
|
@@ -81,6 +83,8 @@ Options:
|
|
|
81
83
|
> ```bash
|
|
82
84
|
> NOCOLOR=true npx fixdiscover
|
|
83
85
|
> ```
|
|
86
|
+
>
|
|
87
|
+
> Similarly, you can enable dry run by setting the `DRY` environment variable to `true`.
|
|
84
88
|
|
|
85
89
|
### Examples
|
|
86
90
|
|