fix: Make sure the angular preset is loaded

releases/v3
Tycho Bokdam 2021-10-05 23:42:20 +02:00
parent 3ed803a60b
commit 2b646ec880
No known key found for this signature in database
GPG Key ID: F1180857DB997467
3 changed files with 6 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "conventional-changelog-action",
"version": "3.1.0",
"version": "3.9.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -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",

View File

@ -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')