Support serving ES6 JS to clients (#596)

* Support serving ES6 JS to clients

* Make es6 default dir and es5 a special dir

* Fix package building

* Fix build_frontend script
This commit is contained in:
Andrey
2017-11-10 09:05:37 -08:00
committed by Paulus Schoutsen
parent 86128d54b4
commit 583abedd34
19 changed files with 295 additions and 121 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ setup(name='home-assistant-frontend',
author='Paulus Schoutsen',
author_email='Paulus@PaulusSchoutsen.nl',
license='Apache License 2.0',
packages=find_packages(include=['hass_frontend', 'hass_frontend.*']),
packages=find_packages(include=['hass_frontend', 'hass_frontend_es5', 'hass_frontend.*', 'hass_frontend_es5.*']),
include_package_data=True,
zip_safe=False)