We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be694ac commit 91f8cd2Copy full SHA for 91f8cd2
1 file changed
lib/index.js
@@ -13,7 +13,7 @@ const cwd = process.cwd();
13
let oldVersion, newVersion;
14
15
module.exports = {
16
- manifests,
+ manifests: getManifests,
17
versionInfo,
18
bump,
19
runNpmScriptIfExists,
@@ -27,7 +27,7 @@ module.exports = {
27
*
28
* @returns {string[]}
29
*/
30
-function manifests () {
+function getManifests () {
31
return ['package.json', 'bower.json', 'component.json'].filter((manifest) => {
32
let pkgPath = path.join(cwd, manifest);
33
try {
0 commit comments