-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fan
40 lines (31 loc) · 977 Bytes
/
build.fan
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
using build
class Build : BuildPod {
new make() {
podName = "afDuvet"
summary = "Something soft and comfortable to wrap your Javascript up in!"
version = Version("1.1.13")
meta = [
"pod.dis" : "Duvet",
"afIoc.module" : "afDuvet::DuvetModule",
"repo.tags" : "web",
"repo.public" : "true"
]
depends = [
"sys 1.0.71 - 1.0",
"util 1.0.71 - 1.0",
"web 1.0.71 - 1.0",
// ---- Core ------------------------
"afConcurrent 1.0.24 - 1.0",
"afIoc 3.0.6 - 3.0",
"afIocConfig 1.1.0 - 1.1",
// ---- Web -------------------------
"afBedSheet 1.5.16 - 1.5",
// ---- Test ------------------------
"afBounce 1.1.12 - 1.1",
"afButter 1.2.10 - 1.2"
]
srcDirs = [`fan/`, `fan/internal/`, `fan/public/`, `fan/public/advanced/`, `test/`, `test/modules/`, `test/modules/my/`]
resDirs = [`doc/`,`res/`]
meta["afBuild.testPods"] = "afBounce afButter"
}
}