mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-26 22:37:21 +00:00
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
# Analyze stats
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
STATS=1 NODE_ENV=production ./node_modules/.bin/webpack --profile --json > compilation-stats.json
|
|
npx webpack-bundle-analyzer compilation-stats.json hass_frontend/frontend_latest
|
|
rm compilation-stats.json
|