You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,12 @@ All development on BookStack is currently done on the master branch. When it's t
22
22
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:
23
23
24
24
```bash
25
-
# Build and minify for production
25
+
# Build assets for development
26
26
npm run-script build
27
27
28
+
# Build and minify assets for production
29
+
npm run-script production
30
+
28
31
# Build for dev (With sourcemaps) and watch for changes
0 commit comments