-
Notifications
You must be signed in to change notification settings - Fork 64
/
beeld.config
91 lines (66 loc) · 2.21 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
###################################################
#
# The buildtools repository is at:
# https://github.com/foo123/Beeld
#
###################################################
settings ={}
RegExp = "RegExp::"
@
plugins =[{}]
# include 'minify' plugin from plugins folder
"minify" = "!plg:minify"
# include 'doc' plugin from plugins folder
"doc" = "!plg:doc"
@
tasks =[{}]
build =[{}]
src =[]
# if run on browser, the excanvas lib can be used
# to provide canvas support for browsers that lack support for canvas element :P
#./src/externals/excanvas.js
!tpl:umd-header.tpl.js # include a umd-header template
./src/haar-detector.js
!tpl:umd-footer.tpl.js # include a umd-footer template
@
# extract header from this file
header = ./src/haar-detector.js
# do any replacements in the source (orderedmap)
replace =[{}]
"@@ROOT@@" = "'undefined' !== typeof self ? self : this"
"@@MODULE@@" = "HAAR"
"@@VERSION@@" = "1.0.7"
@
# extract documentation from the source (map)
doc ={}
"startdoc" = "/**[DOC_MARKDOWN]"
"enddoc" = "[/DOC_MARKDOWN]**/"
"trim" = "RegExp::\\s*\\*[ ]?"
"output" = "./api-reference.md"
@
out = ./build/haar-detector.js
@
minify =[{}]
src =[]
./build/haar-detector.js
@
# extract header from this file
header = ./build/haar-detector.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/haar-detector.min.js
@
@