mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-10-31 14:39:38 +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,
 | |
|     },
 | |
|   });
 | |
| });
 | 
