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