Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Feb 26, 2021. It is now read-only.
/python-vuejsPublic archive

Commit22c20f1

Browse files
committed
Added some logging
1 parentcaeae4a commit22c20f1

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
defproject_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
definstall_dependencies(project):
5051
withcd(project):
52+
click.echo(click.style('running `npm install`',fg='yellow'))
5153
run('npm install'.split())
5254

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

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

6165

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp