all repos — py-vite @ 1ca46801401ef3b7f2d9c27cd7acbb4553decfbe

the original vite, written in python

feat(make.py): make.py is now a dotfile
icyphox icyph0x@protonmail.com
Thu, 22 Mar 2018 15:24:07 +0530
commit

1ca46801401ef3b7f2d9c27cd7acbb4553decfbe

parent

db6c8d55de470cea9632893762f52e118de2a831

2 files changed, 1 insertions(+), 7 deletions(-)

jump to
M README.mdREADME.md

@@ -17,12 +17,6 @@ ```console

$ vite.py build <project-path> ``` -**OR** - -```console -$ make.py # at the project directory -``` - Rendered HTML will be in the `build` directory. Configuration
M vite/vite.pyvite/vite.py

@@ -40,7 +40,7 @@ os.mkdir(os.path.join(path, 'pages'))

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')) + os.path.join(abs_path, '.make.py')) print(good('Created project directory at %s.' % (abs_path))) except FileExistsError: print(bad('Error: specified path exists.'))