Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit 9355eec

Browse files
committed
feat(): shows installable command on installations
1 parent a4433a2 commit 9355eec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/installer/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ module.exports = {
99
if (installed) {
1010
const promises = [];
1111
Object.getOwnPropertyNames(this.requires).forEach((module) => {
12-
this.logger.info('#green', 'installing', module, '->', this.requires[module]);
1312
let installable = this.requires[module];
1413
installable = installable.indexOf('git+') >= 0 ? installable : `${module}@${installable}`;
14+
this.logger.info('#green', 'installing', module, '->', installable);
1515
promises.push(this.execute('npm', ['install', '-g', installable]));
1616
});
1717
return Promise.all(promises)

0 commit comments

Comments
 (0)