mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-10-30 22:19:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| # Analyze stats
 | |
| 
 | |
| # Stop on errors
 | |
| set -e
 | |
| 
 | |
| cd "$(dirname "$0")/.."
 | |
| 
 | |
| export STATS=1
 | |
| statsfile="compilation-stats-demo.json"
 | |
| 
 | |
| ./node_modules/.bin/webpack-cli --profile --node-env=production --json=$statsfile
 | |
| npx webpack-bundle-analyzer $statsfile dist/frontend_latest
 | |
| rm -f $statsfile
 | 
