From 949ce5e5a6447f5232585b381468821acbf713f2 Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Tue, 5 Oct 2021 23:51:36 +0200 Subject: [PATCH] fix: Retry again with the node_modules --- .gitignore | 2 +- src/index.js | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ef74f54..acefc27 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # comment this out distribution branches -node_modules/ +# node_modules/ # Editors .vscode diff --git a/src/index.js b/src/index.js index d87ccfe..f36e63d 100644 --- a/src/index.js +++ b/src/index.js @@ -2,9 +2,6 @@ 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')