1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 12:49:19 +00:00

Alow setting up integrations during onboarding (#3163)

* Allow setting up integrations during onboarding

* Fix compress static

* Don't compress static files in CI

* Remove unused file

* Fix static compress disabled in CI build

* Work with new integration step

* Import fix

* Lint

* Upgrade HAWS to 4.1.1
This commit is contained in:
Paulus Schoutsen
2019-05-07 22:27:10 -07:00
committed by GitHub
parent 8c904fb012
commit 82e8ca2754
21 changed files with 513 additions and 47 deletions

View File

@@ -37,7 +37,11 @@ gulp.task(
"clean",
gulp.parallel("gen-icons", "build-translations"),
"copy-static",
gulp.parallel("webpack-prod-app", "compress-static"),
gulp.parallel(
"webpack-prod-app",
// Do not compress static files in CI, it's SLOW.
...(process.env.CI === "true" ? [] : ["compress-static"])
),
gulp.parallel(
"gen-pages-prod",
"gen-index-html-prod",