-
-
Notifications
You must be signed in to change notification settings - Fork 245
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
Recursive schema evaluation - stop evaluating initial value for empty array #1282
base: master
Are you sure you want to change the base?
Changes from 10 commits
3b057df
07bc651
daf14eb
582369c
124e714
4891bd9
420dcb3
f8d94de
7cbad08
127c76c
fe064e6
5878bf3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,16 @@ | |
"@testing-library/user-event": "14.4.3", | ||
"@types/jest": "26.0.20", | ||
"@types/node": "18.19.50", | ||
"buffer": "^5.5.0||^6.0.0", | ||
"eslint-config-vazco": "7.4.0", | ||
"eslint-import-resolver-alias": "1.1.2", | ||
"eslint-import-resolver-typescript": "2.3.0", | ||
"husky": "8.0.1", | ||
"jest": "29.7.0", | ||
"jest-environment-jsdom": "29.7.0", | ||
"json-schema-traverse": "1.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is it added here? It was already added to the json bridge package. |
||
"lint-staged": "13.0.3", | ||
"process": "^0.11.10", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this used? |
||
"rimraf": "3.0.2", | ||
"stylelint": "13.8.0", | ||
"stylelint-config-prettier": "8.0.2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ | |
}, | ||
"dependencies": { | ||
"invariant": "^2.0.0", | ||
"json-schema-traverse": "^1.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where did you use it? |
||
"lodash": "^4.0.0", | ||
"tslib": "2.8.0" | ||
}, | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Why two different versions? It is dev depenendency, not a peer dependency. Why is this needed? Where is this used?