1
output: assets       # directory path relative to the current directory
2
fingerprint: true    # add sha1 hash to the output file name
3
4
js_minifier: slimit     # optionally use a minifier other than slimit.
5
                     # expects a shell command that uses stdin/stdout.
6
js_minifier_options: # options dictionary to configure JS minifier
7
  mangle: True
8
  mangle_toplevel: True
9
10
javascript:
11
  # 'common' is a bundle name, output file will have prefix 'common'
12
  common:
13
    - yepnope.js
14
    - alipi/ui.js
15
    - alipi/config.js
16
  # utils:
17
  #   # paths are relative to the current directory
18
  #   - static/js/utils.js
19
20
css:
21
  base:
22
    # you can use Unix shell-style wildcards in file names
23
    - alipi/stylesheet.css
24
    - alipi/apis/jquery-ui.css