mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-23 12:57:21 +00:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
// Tasks to run Rollup
|
|
const gulp = require("gulp");
|
|
const { startDevServer } = require("@web/dev-server");
|
|
|
|
gulp.task("wds-watch-app", () => {
|
|
startDevServer({
|
|
config: {
|
|
watch: true,
|
|
},
|
|
});
|
|
});
|