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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user