all repos — py-vite @ 9818def00408c3397a880033cbd2f938aec47889

the original vite, written in python

feat: add static/ dir to project
Anirudh icyph0x@pm.me
Sun, 15 Apr 2018 18:08:33 +0530
commit

9818def00408c3397a880033cbd2f938aec47889

parent

ca306bc96a6487624aab797ae07315d8db1d29bb

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

jump to
M vite.pyvite.py

@@ -35,6 +35,7 @@ cur_path = pathlib.Path('.').resolve()

os.makedirs(os.path.join(path, 'build')) os.mkdir(os.path.join(path, 'pages')) os.mkdir(os.path.join(path, 'templates')) + os.mkdir(os.path.join(path, 'static')) create_config(path) os.symlink(os.path.join(cur_path, 'make.py'), os.path.join(abs_path, 'make.py'))