mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-11-04 08:29:52 +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,
 | 
						|
    },
 | 
						|
  });
 | 
						|
});
 |