@cmflow/cli 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmflow/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "An awesome Git Flow",
5
5
  "author": "camfou",
6
6
  "license": "MIT",
@@ -11,10 +11,8 @@ export function release (options = {}) {
11
11
  noCi: true,
12
12
  ...options
13
13
  })
14
- .then((exitCode) => {
15
- // eslint-disable-next-line no-console
16
- console.log('Release done', exitCode)
17
- process.exitCode = exitCode
14
+ .then(() => {
15
+ process.exitCode = 0
18
16
  })
19
17
  .catch((err) => {
20
18
  // eslint-disable-next-line no-console