diff --git a/README.md b/README.md index 9236e37..c899634 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ installing engines to make eshost automatically find the installed engines. | [Chakra][] | `ch`, `chakra` | ✅ | | ✅ | ✅ | ✅ | | [engine262][] | `engine262` | ✅ | ✅ | ✅ | ✅ | ✅ | | [GraalJS][] | `graaljs` | ✅ | | ✅ | | ✅ | -| [Hermes][] | `hermes` | ✅ | | ✅ | | ✅ | +| [Hermes][] | `hermes` | ✅ | | | | ✅ | | [JavaScriptCore][] | `jsc`, `javascriptcore` | ✅ | ✅ | ✅ | ✅ | ✅ | | [QuickJS][] | `quickjs`, `quickjs-run-test262` | | | ✅ | | | | [SpiderMonkey][] | `sm`, `spidermonkey` | ✅ | ✅ | ✅ | ✅ | ✅ | diff --git a/src/engines/hermes.js b/src/engines/hermes.js index f2f2649..8fcb08e 100644 --- a/src/engines/hermes.js +++ b/src/engines/hermes.js @@ -74,7 +74,7 @@ class HermesInstaller extends Installer { HermesInstaller.config = { name: 'Hermes', id: 'hermes', - supported: ['linux64', 'win64', 'darwin64'], + supported: ['win64', 'darwin64'], }; module.exports = HermesInstaller;