diff --git a/RELEASES.md b/RELEASES.md index 7f7cfa8e6ce1..bdeb270f6770 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -51,6 +51,8 @@ `default` engine version, which may be unexpected. Ideally, after migration, the project should be used only with the new tools. The affected tools are the Launcher and the Project Manager. +- Added documentation and a minimal tool for hosting custom library repositories + ([#1804](https://github.com/enso-org/enso/pull/1804)). ## Libraries diff --git a/tools/simple-library-server/main.js b/tools/simple-library-server/main.js index a67ba41a12b5..83ead01cca33 100755 --- a/tools/simple-library-server/main.js +++ b/tools/simple-library-server/main.js @@ -1,6 +1,6 @@ #!/usr/bin/env node const express = require("express"); -const compression = require('compression'); +const compression = require("compression"); const yargs = require("yargs"); const argv = yargs @@ -31,7 +31,7 @@ app.use(compression({ filter: shouldCompress })); app.use(express.static(argv.root)); app.listen(argv.port); -function shouldCompress (req, res) { +function shouldCompress(req, res) { if (req.path.endsWith(".yaml")) { return true; }