-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCakefile
31 lines (29 loc) · 794 Bytes
/
Cakefile
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
{ build , clear , configure , watch } = require 'Roost'
# See <https://github.com/marrus-sh/Roost> for the meaning of this
# configuration.
configure
destination: "Build/"
literate: yes
name: "mermaid"
order: [
"README"
"IETF/RFC3987"
"IETF/BCP47"
"Interfaces/Term"
"Interfaces/RDFNode"
"Interfaces/NamedNode"
"Interfaces/BlankNode"
"Interfaces/Literal"
"Interfaces/Variable"
"Interfaces/DefaultGraph"
"Interfaces/Quad"
"Interfaces/Triple"
"Interfaces/DataFactory"
"Interfaces/ωSETUP"
]
preamble: "README.js"
prefix: "Sources/"
suffix: ".litcoffee"
task "build", "build mermaid", build
task "watch", "build mermaid and watch for changes", watch
task "clear", "remove built files", clear