Skip to content

Commit 91f8cd2

Browse files
renamed a function to avoid a naming conflict
1 parent be694ac commit 91f8cd2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const cwd = process.cwd();
1313
let oldVersion, newVersion;
1414

1515
module.exports = {
16-
manifests,
16+
manifests: getManifests,
1717
versionInfo,
1818
bump,
1919
runNpmScriptIfExists,
@@ -27,7 +27,7 @@ module.exports = {
2727
*
2828
* @returns {string[]}
2929
*/
30-
function manifests () {
30+
function getManifests () {
3131
return ['package.json', 'bower.json', 'component.json'].filter((manifest) => {
3232
let pkgPath = path.join(cwd, manifest);
3333
try {

0 commit comments

Comments
 (0)