Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.
Merged
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
14 changes: 7 additions & 7 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
},
"author": "Felix Becker <felix@sourcegraph.com>",
"dependencies": {
"@sourcegraph/event-positions": "0.0.1",
"@sourcegraph/event-positions": "^1.0.0",
"@sourcegraph/react-loading-spinner": "0.0.6",
"highlight.js": "^9.12.0",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"mdi-react": "^4.0.0",
"rxjs": "^6.2.1",
"rxjs": "^6.3.2",
Copy link
Contributor

Choose a reason for hiding this comment

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

This release was already included in the previous range, was 6.2.1 actually not compatible with codeintellify anymore? In general it's good to have constraints be wide so consumers don't duplicate packages if not needed, i.e. only update package-lock.json in this repo as a chore (Renovate will do that) unless of course we depend on a new feature from a new version.

Copy link
Member Author

Choose a reason for hiding this comment

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

I was seeing the “source” rxjs type error where one of the types had codeintellify in the path. I think it may have been unnecessary, but upgrading this and some other packages’ rxjs ended up fixing it.

Copy link
Contributor

Choose a reason for hiding this comment

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

Next time you see an error I would be curious to see it, I want to get rid of them once and for all (see #49 and my PRs to rxjs)

Copy link
Contributor

Choose a reason for hiding this comment

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

The root package in general has full power over what versions are pulled in (as long as ranges are compatible) and can update transitive dependencies (unlike MVS). So in theory you should not need to update all of our packages to use only the latest rxjs in the webapp.

"sanitize-html": "^1.18.2",
"ts-key-enum": "^2.0.0",
"vscode-languageserver-types": "^3.8.2"
Expand Down