-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.fan
More file actions
34 lines (27 loc) · 985 Bytes
/
build.fan
File metadata and controls
34 lines (27 loc) · 985 Bytes
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
using build
class Build : BuildPod {
new make() {
podName = "afFpm"
summary = "Manages pods and their dependencies, providing a targeted environment for building, testing, and running Fantom apps"
version = Version("2.1.10")
meta = [
"pod.dis" : "FPM (Fantom Pod Manager)",
"pod.displayName" : "FPM (Fantom Pod Manager)",
"repo.tags" : "system, app",
"repo.public" : "true"
]
depends = [
"sys 1.0.80 - 1.0",
"fanr 1.0.80 - 1.0",
"concurrent 1.0.80 - 1.0",
"compiler 1.0.80 - 1.0", // for afPlastic
"web 1.0.80 - 1.0", // for deleting pods from afFanr
]
srcDirs = [`fan/`, `fan/afConcurrent/`, `fan/afPlastic/`, `fan/afProcess/`, `fan/internal/`, `fan/internal/cmds/`, `fan/internal/repos/`, `fan/internal/resolve/`, `fan/internal/utils/`, `fan/public/`, `test/`]
resDirs = [`doc/`, `res/`]
docApi = true
docSrc = true
meta["afBuild.docApi"] = "true"
meta["afBuild.docSrc"] = "true"
}
}