1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-27 06:06:30 +00:00
Files
frontend/demo/script/size_stats
2019-02-05 07:28:23 -08:00

12 lines
258 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 dist
rm compilation-stats.json