fix: Make sure the angular preset is loaded
parent
3ed803a60b
commit
2b646ec880
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "conventional-changelog-action",
|
||||
"version": "3.1.0",
|
||||
"version": "3.9.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
"@actions/exec": "1.1.0",
|
||||
"@iarna/toml": "^2.2.5",
|
||||
"conventional-changelog": "3.1.24",
|
||||
"conventional-changelog-angular": "^5.0.13",
|
||||
"conventional-recommended-bump": "6.1.0",
|
||||
"git-semver-tags": "4.1.1",
|
||||
"object-path": "^0.11.8",
|
||||
|
|
|
@ -2,6 +2,9 @@ const core = require('@actions/core')
|
|||
const conventionalRecommendedBump = require('conventional-recommended-bump')
|
||||
const path = require('path')
|
||||
|
||||
// Make sure the angular preset is loaded
|
||||
require('conventional-changelog-angular')
|
||||
|
||||
const getVersioning = require('./version')
|
||||
const git = require('./helpers/git')
|
||||
const changelog = require('./helpers/generateChangelog')
|
||||
|
|
Loading…
Reference in New Issue