@cmflow/cli 0.73.5 → 0.73.7

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.5",
3
+ "version": "0.73.7",
4
4
  "description": "An awesome Git Flow",
5
5
  "author": "camfou",
6
6
  "license": "MIT",
@@ -52,7 +52,7 @@ export async function prepare (pluginConfig, context) {
52
52
  switch (BUMP_METHOD) {
53
53
  case 'native':
54
54
  logger.info('Using package manager')
55
- pkgManager.newVersion(context.nextRelease.version)
55
+ npm.newVersion(context.nextRelease.version)
56
56
  break
57
57
  case 'lerna':
58
58
  if (HAS_LERNA) {
@@ -65,7 +65,7 @@ export async function prepare (pluginConfig, context) {
65
65
  break
66
66
  case 'native:lerna':
67
67
  default:
68
- pkgManager.newVersion(context.nextRelease.version)
68
+ npm.newVersion(context.nextRelease.version)
69
69
 
70
70
  if (HAS_LERNA) {
71
71
  await lerna.newVersion(context.nextRelease.version)
@@ -29,6 +29,11 @@ export const WORKFLOW_CONFIGURATION = [
29
29
  label: 'Technical Improvements',
30
30
  release: 'patch'
31
31
  },
32
+ {
33
+ type: 'refactor',
34
+ label: 'Technical Improvements',
35
+ release: 'patch'
36
+ },
32
37
  {
33
38
  type: 'default',
34
39
  label: 'Miscellaneous',