@cmflow/cli 2.2.3 → 2.2.4

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmflow/cli",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "An awesome Git Flow",
5
5
  "author": "camfou",
6
6
  "license": "MIT",
@@ -82,6 +82,7 @@ Nous allons livrer en production la version ${context.tag} de l'${context.compon
82
82
  Au menu de cette livraison :
83
83
 
84
84
  ${context.releases
85
+ .filter(boolean)
85
86
  .reverse()
86
87
  .map((release) => {
87
88
  const issues =
@@ -39,5 +39,7 @@ export async function jiraGetReleasesAndIssues(projectId, component, tagVersion)
39
39
  ...others.filter((release) => {
40
40
  return !release?.released;
41
41
  })
42
- ].reverse();
42
+ ]
43
+ .filter(Boolean)
44
+ .reverse();
43
45
  }