summaryrefslogtreecommitdiff
path: root/docs/assets.markdown
blob: 41776fcad6a670d826fea734e25113b8edc19b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
How to build assets (Javascript and CSS files)?
===============================================

Stylesheet and Javascript files are merged together and minified.

- Original CSS files are stored in the folder `assets/css/src/*.css`
- Original Javascript code is stored in the folder `assets/js/src/*.js`

To make a new build run this shell-script from a terminal:

```bash
./scripts/make-assets.sh
```

This script generates the files `assets/css/app.css` and `assets/js/app.js`.

This tool is only available in the repository (development version).