1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-23 19:32:29 +01:00

Updated dev command details

Closes #453
This commit is contained in:
Dan Brown 2017-07-28 11:32:42 +01:00
parent fea139d8e7
commit 9126da6299
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -22,9 +22,12 @@ All development on BookStack is currently done on the master branch. When it's t
SASS is used to help the CSS development and the JavaScript is run through browserify/babel to allow for writing ES6 code. Both of these are done using gulp. To run the build task you can use the following commands:
``` bash
# Build and minify for production
# Build assets for development
npm run-script build
# Build and minify assets for production
npm run-script production
# Build for dev (With sourcemaps) and watch for changes
npm run-script dev
```