-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat!: update dependenies to use lodash v4 #378
Conversation
src/qtiCommonRenderer/renderers/interactions/AssociateInteraction.js
Outdated
Show resolved
Hide resolved
src/qtiCommonRenderer/renderers/interactions/GraphicAssociateInteraction.js
Outdated
Show resolved
Hide resolved
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.
Was only one error in code: vset.forEach(vset.remove()); Should be: vset.forEach(item => item.remove()); Other looks good for me.
Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
…ion.js Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
…nteraction.js Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
Co-authored-by: Kirill Sedunov <[email protected]> Signed-off-by: shaveko <[email protected]>
@yukipastelcat @taopkorczak Thanks for your review. @yukipastelcat please check my comments on some of your questions and suggestions |
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.
Tests pass. However, please also take care of the deprecated API: _.each()
is replaced by _.forEach()
.
Review Checklist
- New code is covered by tests (if applicable)
- Tests are running successfully (old and new ones) on my local machine (if applicable)
- New code respects code style rules
- New code respects best practices
- New code is not subject to concurrency issues (if applicable)
- Feature is working correctly on my local machine (if applicable)
- Acceptance criteria are respected
- Pull request title and description are meaningful
- Pull request's target is not
master
- Commits are following conventional commits
- Commits messages are meaningful
- Commits are atomic
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.
Code is looking good, tests are passing, good job👍
- New code is covered by tests (if applicable)
- Tests are running successfully (old and new ones) on my local machine (if applicable)
- New code is respecting code style rules
- New code is respecting best practices
- Feature is working correctly on my local machine (if applicable)
- Acceptance criteria are respected
- Pull request title and description are meaningful
- Pull request's target is not master
Version🚨 Your pull request contains a BREAKING CHANGE, please be sure to communicate it.
There are 1 BREAKING CHANGE, 1 feature, 16 fixes |
related to https://oat-sa.atlassian.net/browse/ADF-1595
Description
Update of depnendencies to use lodash 4
Update code to be compatible with lodash v4 api
How to test
npm run test