Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 597 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 597 Bytes

game-of-life

example workflow

John Conway's Game of Life written in TypeScript. See the live example here

Development

To run a development server deploying the project:

$ npm install
$ npm run serve

Build

To build the project into the ./dist direcetory:

$ npm install
$ npm run build

Push the changes to Git, then deploy to the GitHub pages branch with:

$ git subtree push --prefix dist origin gh-pages