We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b5276 commit da5514dCopy full SHA for da5514d
eos-cli/actions/action_helpers/env_config.js
@@ -24,7 +24,10 @@ const express = (name) => {
24
&& echo "${Servers.express()}" >> ${name}.js \
25
&& npm init --yes \
26
&& npm install --save express morgan \
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
+ });
31
};
32
33
const Config = {
0 commit comments