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

Convert remaining gulp modules to ESM (#16430)

This commit is contained in:
Steve Repsher
2023-05-08 11:43:29 -04:00
committed by GitHub
parent aa3fd70966
commit 586079917d
19 changed files with 198 additions and 197 deletions

10
build-scripts/gulp/wds.js Normal file
View File

@@ -0,0 +1,10 @@
import gulp from "gulp";
import { startDevServer } from "@web/dev-server";
gulp.task("wds-watch-app", async () => {
startDevServer({
config: {
watch: true,
},
});
});