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 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.2 linux-x64 node-v25.2.1
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}
@@ -433,5 +433,5 @@
433
433
  ]
434
434
  }
435
435
  },
436
- "version": "0.7.2"
436
+ "version": "0.7.3"
437
437
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backlog-exporter",
3
3
  "description": "A new CLI generated with oclif",
4
- "version": "0.7.2",
4
+ "version": "0.7.3",
5
5
  "author": "ShuntaToda",
6
6
  "bin": {
7
7
  "backlog-exporter": "bin/run.js"