Skip to content

Commit

Permalink
refactor(authentication-service): fixed sonar code smell in index of …
Browse files Browse the repository at this point in the history
…custom-sf-changelog

gh-124
  • Loading branch information
akshatdubeysf committed Apr 28, 2021
1 parent ad81955 commit cbeb8f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/custom-sf-changelog/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict'
const Q = require('q')
const conventionalChangelog = require('./conventional-changelog')
const parserOpts = require('./parser-opts')
const recommendedBumpOpts = require('./conventional-recommended-bump')
const writerOpts = require('./writer-opts')
const conventionalChangelogOuter = require('./conventional-changelog')
const parserOptsOuter = require('./parser-opts')
const recommendedBumpOptsOuter = require('./conventional-recommended-bump')
const writerOptsOuter = require('./writer-opts')

module.exports = Q.all([conventionalChangelogOuter, parserOptsOuter, recommendedBumpOptsOuter, writerOptsOuter])
.spread((conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts) => {
Expand Down

0 comments on commit cbeb8f2

Please sign in to comment.