Skip to content

Commit da5514d

Browse files
committed
added prints to secondary server integration
1 parent 31b5276 commit da5514d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

eos-cli/actions/action_helpers/env_config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ const express = (name) => {
2424
&& echo "${Servers.express()}" >> ${name}.js \
2525
&& npm init --yes \
2626
&& npm install --save express morgan \
27-
`);
27+
`).on('close', (data) => {
28+
console.log(Util.chalk.blue('Created Express Server'));
29+
console.log('Installing server dependencies. This could take a few minutes...');
30+
});
2831
};
2932

3033
const Config = {

0 commit comments

Comments
 (0)