]> git.cworth.org Git - lmno.games/blobdiff - README
Fix a couple of typos in my comments here
[lmno.games] / README
diff --git a/README b/README
index 599bcdb94e1a0e670a66c853faa6da91ec6ce129..a692139aa6da7c5ced84ec6271fb4a0764520475 100644 (file)
--- a/README
+++ b/README
@@ -7,10 +7,19 @@ verifying 3rd-party resources that are needed.
 The following Makefile targets will be useful while developing this
 code:
 
-  make deps: Download 3rd-party resources to be served by lmno.games
+  make: Download and build JavaScript resources in development mode
 
-  make dev: Configure development versions of "make deps" resources
+  make LMNO_BUILD=production: As above but in production mode
 
-  make prod: Configure production versions of "make deps" resources
+  make deploy: Deploy latest, committed, production-mode content to lmno.games
 
-  make deploy: Deploy latest, committed static content to lmno.games
+Dependencies
+------------
+Compiling the source requires the babel (version 6) CLI to be
+available as "babeljs" along with the "react" preset and support for
+"object spread" syntax. This can be achieved on Debian with:
+
+       sudo apt install \
+                 node-babel-cli \
+                 node-babel-preset-react \
+                 node-babel-plugin-transform-object-rest-spread