-
Notifications
You must be signed in to change notification settings - Fork 99
R universe #542
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
R universe #542
Conversation
README.md
Outdated
|
||
```r | ||
# install.packages("remotes") | ||
remotes::install_github("REditorSupport/languageserver") | ||
install.packages("languageserver", repos="https://reditorsupport.r-universe.dev") |
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.
It should be install.packages("languageserver", repos = c(reditorsupport = "https://reditorsupport.r-universe.dev", getOption("repos")))
(to install dependent packages).
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.
Thanks!
Should we also include |
Isn't it already available in r-universe? https://r-lib.r-universe.dev/ui#package:lintr |
I thought lintr could be in our r-universe. But a simpler way is just to specify multiple repos so that the latest builds of the dependencies from r-lib (e.g. lintr, styler, xml2, etc.) or rstudio could be easily installed: install.packages("languageserver", repos = c(
reditorsupport = "https://reditorsupport.r-universe.dev",
rlib = "https://r-lib.r-universe.dev",
rstudio = 'https://rstudio.r-universe.dev',
getOption("repos")
)) Looks like there's no need to include them in our universe at all. |
Closes #536
I set up a repo to contain the configuration of our r-universe and updated README accordingly.
The repo that runs Github Actions to update and build the unvierse is https://github.com/r-universe/reditorsupport.