Skip to content

Commit

Permalink
Set WEBR and WEBR_VERSION environment variables (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgestagg committed Apr 24, 2024
1 parent 6865be3 commit 00b83db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Expand Up @@ -6,6 +6,8 @@

* An `RObject.class()` method has been added, returning an `RCharacter` object with the names of the classes from which the given R object inherits. This has been implemented using R's `class()` function, and so the implicit class is similarly returned when the R object has no `class` attribute.

* WebR now sets the environment variable `WEBR` equal to `"1"` and `WEBR_VERSION` equal to the webR version string in the WebAssembly environment (#414).

## Bug Fixes

* Fix installing packages via shim with `character.only = TRUE` (#413).
Expand Down
2 changes: 2 additions & 0 deletions src/webR/webr-main.ts
Expand Up @@ -174,6 +174,8 @@ const defaultEnv = {
FONTCONFIG_PATH: '/etc/fonts',
R_HOME: '/usr/lib/R',
R_ENABLE_JIT: '0',
WEBR: '1',
WEBR_VERSION: WEBR_VERSION,
};

const defaultOptions = {
Expand Down

0 comments on commit 00b83db

Please sign in to comment.