-
Notifications
You must be signed in to change notification settings - Fork 0
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
Sprint 4 #4
Conversation
Установка пакета handlebars-lader выдает сообщение об уязвимости. Он устанавливает из своих зависимостей пакет loader-utils версии 1.4.0 - в нём и проблема. PR в репозитории лоадера: ссылка |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Поздравляю! Ваша работа принята.
Вы отлично потрудились.
Readme
хорошо оформлен- Отлично, что фиксируете версии зависимостей
- Отлично, что нет
EOF
ошибок в гите - Отлично, что сделали 2 отдельных конфига и объединяете с помощью
webpack-merge
- Отлично, что не забываете запускать еще и тесты в прекоммите (а не только линтеры)
- Все 12 тестов проходят успешно (хорошее кол-во тестов)
- Проект очень достойный. Все очень быстро и правильно работает. И выглядит симпатично
Удачного дальнейшего обучения.
Можно лучше
- Для линтинга на прекоммите можно воспользоваться библиотекой lint-staged . Она позволяет осуществлять линтинг только тех файлов, которые изменились
const { merge } = require('webpack-merge'); | ||
const config = require('./webpack.config'); | ||
|
||
module.exports = merge( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Отлично, что сделали 2 отдельных конфига и объединяете с помощью webpack-merge
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint:all && npm run test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Отлично, что не забываете запускать еще и тесты в прекоммите (а не только линтеры)
@@ -0,0 +1,4 @@ | |||
#!/usr/bin/env sh | |||
. "$(dirname -- "$0")/_/husky.sh" | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Можно лучше
- Для линтинга на прекоммите можно воспользоваться библиотекой lint-staged . Она позволяет осуществлять линтинг только тех файлов, которые изменились
Здравствуйте! Спасибо за комментарии! |
No description provided.