Comparing version 1.5.0 to 1.6.0
@@ -7,6 +7,7 @@ #!/usr/bin/env node | ||
var input = process.argv.slice(2); | ||
var bin = process.platform === 'darwin' || | ||
var bin = | ||
process.platform === 'darwin' || | ||
(process.platform === 'linux' && process.arch === 'x64') | ||
? path.join(__dirname, 'lumo') | ||
: process.platform === 'win32' && process.arch === 'x64' | ||
? path.join(__dirname, 'lumo') | ||
: process.platform === 'win32' && process.arch === 'x64' | ||
? path.join(__dirname, 'lumo.exe') | ||
@@ -13,0 +14,0 @@ : null; |
{ | ||
"name": "lumo-cljs", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"description": "Fast, cross-platform, standalone ClojureScript REPL", | ||
@@ -5,0 +5,0 @@ "author": "António Nuno Monteiro <anmonteiro@gmail.com> (https://anmonteiro.com)", |
@@ -0,1 +1,3 @@ | ||
<img src="./logo/full.png" alt="lumo logo" title="lumo" align="right" width="150" height="150" /> | ||
# Lumo | ||
@@ -7,4 +9,5 @@ [![Backers on Open Collective](https://opencollective.com/lumo/backers/badge.svg)](#backers) | ||
JavaScript engine. It starts up instantaneously and has out-of-the-box access to | ||
the entire Node.js ecosystem. It also provides a ClojureScript build API, making | ||
it possible to | ||
the entire Node.js ecosystem. | ||
Lumo also provides a ClojureScript build API, making it possible to | ||
[compile ClojureScript projects entirely without the JVM](https://anmonteiro.com/2017/02/compiling-clojurescript-projects-without-the-jvm/), | ||
@@ -58,2 +61,9 @@ thanks to the [experimental JavaScript version](https://github.com/google/closure-compiler-js) | ||
### [Docker](https://store.docker.com/community/images/anmonteiro/lumo) | ||
``` shell | ||
$ docker pull anmonteiro/lumo:latest | ||
$ docker run -it anmonteiro/lumo | ||
``` | ||
### Manual | ||
@@ -74,3 +84,3 @@ | ||
1. Make sure you have installed [Boot](http://boot-clj.com/) and [Yarn](https://yarnpkg.com/). | ||
1. Make sure you have installed [Boot](http://boot-clj.com/), [Yarn](https://yarnpkg.com/) and [Node.js](https://nodejs.org/en/download/current/) (version >= 8). | ||
2. At the root of the repository, run: `boot release`. | ||
@@ -77,0 +87,0 @@ 3. The resulting binary can be found in `build/lumo` (or `build\lumo.exe` if you're |
15452
82
164