Implement frontend dependency management

This commit is contained in:
Bálint Bokros
2017-12-11 17:36:49 +01:00
parent b5e3759bed
commit 7e79c22437
9 changed files with 2997 additions and 18 deletions

View File

@ -9,7 +9,7 @@ from tornado.autoreload import watch
def _static_files():
return chain.from_iterable(
glob(pattern) for pattern in (
'static/*.js', 'static/*.css', 'templates/*htm?'
'static/dist/*.js', 'static/*.css', 'templates/*htm?'
)
)