-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default.coffee
41 lines (40 loc) · 972 Bytes
/
config.default.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
icndir = 'icons'
pwapath = 'pwa'
webpath = 'web'
exports.cfg =
dest_path:
debug: 'dist'
release: 'out'
github: 'docs'
icon:
dir: icndir
src: ["#{pwapath}/icon.pug"]
out: "#{icndir}/icon.svg"
pwa:
background_color: '#000'
description: 'my own personal diceset'
display: 'standalone'
icon_sizes: [128, 192, 256, 512]
icon_mask: [false, false, true, true]
icon_svg: '72x72 96x96 1024x1024'
lang: 'fr'
name: 'Tiny Umbrella'
path: pwapath
service_worker: {src: "#{pwapath}/sw.coffee", out: 'sw.js'}
'short-name': 'tiny-umbrella'
start_url: 'index.html'
theme_color: '#000'
scope: '/tiny-umbrella/'
static: 'static'
version: '1.1.1'
web:
html:
src: ("#{webpath}/#{file}" for file in ['index.pug'])
out: 'index.html'
path: webpath
sass:
src: "#{webpath}/style.sass"
out: 'style.css'
coffee:
src: "#{webpath}/app.coffee"
out: 'app.js'