backlog-exporter 0.7.2 → 0.7.3
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 +1 -1
- package/dist/utils/backlog-api.js +5 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ $ npm install -g backlog-exporter
|
|
|
43
43
|
$ backlog-exporter COMMAND
|
|
44
44
|
running command...
|
|
45
45
|
$ backlog-exporter (--version)
|
|
46
|
-
backlog-exporter/0.7.
|
|
46
|
+
backlog-exporter/0.7.3 linux-x64 node-v25.8.1
|
|
47
47
|
$ backlog-exporter --help [COMMAND]
|
|
48
48
|
USAGE
|
|
49
49
|
$ backlog-exporter COMMAND
|
|
@@ -175,13 +175,18 @@ export async function downloadIssues(command, options) {
|
|
|
175
175
|
const customFieldsSection = createCustomFieldsSection(issue.customFields);
|
|
176
176
|
// Markdownファイルに書き込む
|
|
177
177
|
const assigneeName = issue.assignee ? issue.assignee.name : '未割り当て';
|
|
178
|
+
const startDate = issue.startDate ? new Date(issue.startDate).toLocaleDateString('ja-JP') : '未設定';
|
|
179
|
+
const dueDate = issue.dueDate ? new Date(issue.dueDate).toLocaleDateString('ja-JP') : '未設定';
|
|
178
180
|
const markdownContent = `# ${issue.summary}
|
|
179
181
|
|
|
180
182
|
## 基本情報
|
|
181
183
|
- 課題キー: ${issue.issueKey}
|
|
184
|
+
- 種別: ${issue.issueType.name}
|
|
182
185
|
- ステータス: ${issue.status.name}
|
|
183
186
|
- 優先度: ${issue.priority.name}
|
|
184
187
|
- 担当者: ${assigneeName}
|
|
188
|
+
- 開始日: ${startDate}
|
|
189
|
+
- 期限日: ${dueDate}
|
|
185
190
|
- 作成日時: ${new Date(issue.created).toLocaleString('ja-JP')}
|
|
186
191
|
- 更新日時: ${new Date(issue.updated).toLocaleString('ja-JP')}
|
|
187
192
|
- [Backlog Issue Link](${backlogIssueUrl})${customFieldsSection}
|
package/oclif.manifest.json
CHANGED