]> git.cworth.org Git - lmno.games/blob - README
Remove typo in URL
[lmno.games] / README
1 Static resources for the https://lmno.games/ website
2
3 This repository contains the static HTML, JavaScript, and CSS files
4 used by the lmno.games website, including support for downloading and
5 verifying 3rd-party resources that are needed.
6
7 The following Makefile targets will be useful while developing this
8 code:
9
10   make: Download and build JavaScript resources in development mode
11
12   make LMNO_BUILD=production: As above but in production mode
13
14   make deploy: Deploy latest, committed, production-mode content to lmno.games
15
16 Dependencies
17 ------------
18 Compiling the source requires the babel (version 6) CLI to be
19 available as "babeljs" along with the "react" preset and support for
20 "object spread" syntax. This can be achieved on Debian with:
21
22         sudo apt install \
23                  node-babel-cli \
24                  node-babel-preset-react \
25                  node-babel-plugin-transform-object-rest-spread