-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbeeld.config
96 lines (84 loc) · 2.17 KB
/
beeld.config
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
###################################################
#
# The buildtools repository is at:
# https://github.com/foo123/Beeld
#
###################################################
settings ={}
Xpresion = "Xpresion::"
RegExp = "RegExp::"
@
plugins =[{}]
"minify" = "!plg:minify"
"doc" = "!plg:doc"
@
tasks =[{}]
build =[{}]
src =[]
### Geometrize.js ###
./src/header.js
./src/Changeable.js
./src/Value.js
./src/Matrix.js
./src/Color.js
./src/Style.js
./src/Primitive.js
./src/Point.js
./src/Topos.js
./src/Curve.js
./src/Line.js
./src/Polyline.js
./src/Arc.js
./src/Bezier2.js
./src/Bezier3.js
./src/Polygon.js
./src/Circle.js
./src/Ellipse.js
./src/Shape.js
./src/Tween.js
./src/Plane.js
./src/utils.js
./src/footer.js
@
# extract header from this file
header = ./src/header.js
replace =[{}]
"@@VERSION@@" = "0.9.0"
"@@DATE@@" = Xpresion::date("Y-m-d H:i:s")
@
# Extract documentation from the source (map)
doc ={}
"startdoc" = "/**[DOC_MARKDOWN]"
"enddoc" = "[/DOC_MARKDOWN]**/"
"trim" = RegExp::^\\s*\\*[ ]?
"output" = "./manual.md"
@
out = ./build/Geometrize.js
@
#minify =[{}]
#
# src =[]
# ./build/Geometrize.js
# @
#
# # Minify the Package (map of lists)
# minify ={}
# # Options for Node UglifyJS Compiler (if used, default), (mangle and compress)
# uglifyjs =[]
# -m -c
# @
#
# # Options for Java Closure Compiler (if used)
# closure =[]
# "--language_in=ECMASCRIPT5_STRICT"
# @
#
# # Options for Java YUI Compressor Compiler (if used)
# yui =[]
# --preserve-semi
# @
# @
#
# out = ./build/Geometrize.min.js
#@
@