From e9e3e8b6b1cabe620046cbab1b10e0b7d32a3490 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Tue, 11 Dec 2018 14:54:34 +0000 Subject: [PATCH] Added npm install details Closes #1174 --- readme.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 245460f9a..08da9c539 100644 --- a/readme.md +++ b/readme.md @@ -25,11 +25,14 @@ In regards to development philosophy, BookStack has a relaxed, open & positive a All development on BookStack is currently done on the master branch. When it's time for a release the master branch is merged into release with built & minified CSS & JS then tagged at its version. Here are the current development requirements: -* [Node.js](https://nodejs.org/en/) v6.9+ +* [Node.js](https://nodejs.org/en/) v10.0+ SASS is used to help the CSS development and the JavaScript is run through babel to allow for writing ES6 code. This is done using webpack. To run the build task you can use the following commands: ``` bash +# Install NPM Dependencies +npm install + # Build assets for development npm run build