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

Replace traverse with neotraverse #5199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"json-beautify": "^1.0.1",
"json-refs": "^3.0.4",
"lodash": "^4.17.21",
"neotraverse": "^0.6.11",
"patch-package": "=8.0.0",
"promise-worker": "^2.0.1",
"prop-types": "15.8.1",
Expand All @@ -90,7 +91,6 @@
"reselect": "^5.1.0",
"swagger-client": "^3.25.0",
"swagger-ui": "^5.17.5",
"traverse": "^0.6.6",
"validator": "=13.12.0",
"yaml-js": "^0.3.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/validate-semantic/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as selectors from "./selectors"
import * as actions from "./actions"
import traverse from "traverse"
import traverse from "neotraverse"
Copy link

Choose a reason for hiding this comment

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

May or may not need to be turned into neotraverse/legacy, whether it works or not

import {createSelector} from "reselect"
import debounce from "lodash/debounce"
import memoize from "lodash/memoize"
Expand Down