@cmflow/cli 0.73.2 → 0.73.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmflow/cli",
3
- "version": "0.73.2",
3
+ "version": "0.73.3",
4
4
  "description": "An awesome Git Flow",
5
5
  "author": "camfou",
6
6
  "license": "MIT",
@@ -132,7 +132,9 @@ export function getConfig () {
132
132
  get DEPLOY_ON_DOCKER () {
133
133
  return toBool(process.env.DEPLOY_ON_DOCKER) && DOCKER_HUB_ID && DOCKER_HUB_PWD
134
134
  },
135
- DEPLOY_ON_HEROKU: !!HEROKU_APP,
135
+ get DEPLOY_ON_HEROKU () {
136
+ return process.env.DEPLOY_ON_HEROKU ? toBool(process.env.DEPLOY_ON_HEROKU) && !!HEROKU_APP : !!HEROKU_APP
137
+ },
136
138
  CI_SKIP: '[ci skip]',
137
139
  RELEASE_CANDIDATE_TAG: '[MEP]',
138
140
  ORIGIN: 'origin',