Skip to content

Commit 45417e0

Browse files
authored
Merge pull request #161 from sviete/beta
20210830.3
2 parents bcc4b7c + a94f989 commit 45417e0

File tree

258 files changed

+17465
-12178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+17465
-12178
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
matrix:
7474
arch: ["aarch64", "armhf", "armv7", "amd64", "i386"]
7575
tag:
76-
- "3.8-alpine3.12"
7776
- "3.9-alpine3.13"
77+
- "3.9-alpine3.14"
7878
steps:
7979
- name: Download requirements.txt
8080
uses: actions/download-artifact@v2

build-scripts/gulp/clean.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@ require("./translations");
55

66
gulp.task(
77
"clean",
8-
gulp.parallel("clean-translations", function cleanOutputAndBuildDir() {
9-
return del([paths.app_output_root, paths.build_dir]);
10-
})
8+
gulp.parallel("clean-translations", () =>
9+
del([paths.app_output_root, paths.build_dir])
10+
)
1111
);
1212

1313
gulp.task(
1414
"clean-demo",
15-
gulp.parallel("clean-translations", function cleanOutputAndBuildDir() {
16-
return del([paths.demo_output_root, paths.build_dir]);
17-
})
15+
gulp.parallel("clean-translations", () =>
16+
del([paths.demo_output_root, paths.build_dir])
17+
)
1818
);
1919

2020
gulp.task(
2121
"clean-cast",
22-
gulp.parallel("clean-translations", function cleanOutputAndBuildDir() {
23-
return del([paths.cast_output_root, paths.build_dir]);
24-
})
22+
gulp.parallel("clean-translations", () =>
23+
del([paths.cast_output_root, paths.build_dir])
24+
)
2525
);
2626

27-
gulp.task("clean-hassio", function cleanOutputAndBuildDir() {
28-
return del([paths.hassio_output_root, paths.build_dir]);
29-
});
27+
gulp.task("clean-hassio", () =>
28+
del([paths.hassio_output_root, paths.build_dir])
29+
);
3030

3131
gulp.task(
3232
"clean-gallery",
33-
gulp.parallel("clean-translations", function cleanOutputAndBuildDir() {
34-
return del([paths.gallery_output_root, paths.build_dir]);
35-
})
33+
gulp.parallel("clean-translations", () =>
34+
del([paths.gallery_output_root, paths.build_dir])
35+
)
3636
);

0 commit comments

Comments
 (0)