Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Week 6 - Alexander Belozerov #80

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

sashabelozerov
Copy link

1- Сначала настроим sitespeed.io и выполним анализ исходной версии приложения с помощью webpack-bundle-analyzer:

docker run --privileged --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io http://host.docker.internal:3000/ -n 1 --budget.configPath budget.json

sitespeed-io-before

bin/webpack --profile --json > tmp/stats.json
npx webpack-bundle-analyzer tmp/stats.json public/packs

webpack-bundle-analyzer-before

Видим, что бюджет не соблюдается, а moment.js и chart.js могут быть точками роста.

2- Закомментируем всё содержимое файла proCharts.js и выполним анализ изменённой версии в webpack-bundle-analyzer:

webpack-bundle-analyzer-after-comment-prochart

moment.js и chart.js пропали. Значит, дело в том, что proCharts.js попадает в сборку vendor.js.

3- Найдем, где еще используеся proCharts.js:

grep -r 'proCharts' app
app/views/dashboards/pro.html.erb:    <%= javascript_pack_tag "proCharts", defer: true %>

Здесь он подключается в виде пака. А moment.js и chart.js в общем vendor не нужны.

4- Разбираемся с плагином CommonsChunkVendor, исключаем эти файлы. Выполним анализ изменённой версии в webpack-bundle-analyzer:

webblack-bundle-analyzer-after-all

Проверяем бюджет с помощью sitespeed.io:

sitespeed-io-after

Не уложились на 5 Кб ) Но я посчитал, что этого достаточно.

5- Настраиваем GitHub Actions для защиты от деградации:

github-actions

Copy link
Collaborator

@spajic spajic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да, всё правильно, действия достаточные. Может быть при обновлении js-либ что-то раздулось и перестало пролезать в бюджет, но дальнейших оптимизаций не предполагалось ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants