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

Commit 22c20f1

Browse files
committed
Added some logging
1 parent caeae4a commit 22c20f1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python_vuejs/vuejs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,23 @@ def install_cli():
4343

4444
@staticmethod
4545
def project_setup(project):
46+
click.echo(click.style('running `vue init webpack {project}`'.format(project=project), fg='yellow'))
4647
run('vue init webpack {project}'.format(project=project).split())
4748

4849
@staticmethod
4950
def install_dependencies(project):
5051
with cd(project):
52+
click.echo(click.style('running `npm install`', fg='yellow'))
5153
run('npm install'.split())
5254

5355
@staticmethod
5456
def dev():
57+
click.echo(click.style('running `npm run dev`', fg='yellow'))
5558
run('npm run dev'.split())
5659

5760
@staticmethod
5861
def build():
62+
click.echo(click.style('running `npm run build`', fg='yellow'))
5963
run('npm run build'.split())
6064

6165

0 commit comments

Comments
 (0)