all repos — py-vite @ f2f9eb9e25dfaf46f23f5d5e9d622b58d5f68c6a

the original vite, written in python

fix: invoke create_template() in create_project()
Anirudh icyph0x@protonmail.com
Fri, 13 Apr 2018 21:12:25 +0530
commit

f2f9eb9e25dfaf46f23f5d5e9d622b58d5f68c6a

parent

76fb5932c766901bf8556e04bb2bfa28ba6fd2ee

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M vite/vite.pyvite/vite.py

@@ -41,9 +41,11 @@ os.mkdir(os.path.join(path, 'templates'))

create_config(path) os.symlink(os.path.join(cur_path, 'make.py'), os.path.join(abs_path, '.make.py')) + create_template(path) print(good('Created project directory at %s.' % (abs_path))) except FileExistsError: print(bad('Error: specified path exists.')) + def create_config(path):

@@ -78,6 +80,7 @@ <footer>

{{ footer }} <p> © {{ author }} </p> <footer> + """)