-
Notifications
You must be signed in to change notification settings - Fork 2
/
wt.css.asd
82 lines (80 loc) · 3.24 KB
/
wt.css.asd
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
;;;; -*- Mode: LISP -*-
(defsystem wt.css
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.uri
:alexandria
:closer-mop
:cl-ppcre
:parse-number
:split-sequence
:trivial-gray-streams)
:defsystem-depends-on (:wt.vendor)
:components ((:module "css"
:serial t
:components ((:file "package")
(:file "utility")
(:file "parser")
(:file "serialize")
(:file "dimension")
(:file "declaration")
(:file "percentage")
(:file "function")
(:file "length")
(:file "angle")
(:file "time")
(:file "frequency")
(:file "resolution")
(:file "colors")
(:file "color")
(:file "image")
(:file "font")
(:file "box")
(:file "sizing")
(:file "overflow")
(:file "text")
(:file "flexbox")
(:file "background")
(:file "border")
(:file "display")
(:file "position")
(:file "logical")
(:file "ui")
(:file "list")
(:file "content")
(:file "transition")
(:file "transform")
(:file "animation")
(:file "masking")
(:file "svg")
(:file "pointer-events")
(:file "filter-effects")
(:file "rule")
(:file "stylesheet")
(:file "tokenize")
(:file "parse"))))
:in-order-to ((test-op (test-op :wt.css/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :css hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.css/test
:depends-on (:wt.css
:wt.http
:wt.test)
:components ((:module "test/css"
:serial t
:components ((:file "package")
(:file "helper")
(:file "dimension")
(:file "declaration")
(:file "color")
(:file "box")
(:file "sizing")
(:file "text")
(:file "style")
(:file "bootstrap")
(:file "tokenize")
(:file "parse"))))
:perform (test-op (o c)
(symbol-call :test :run! :css-test)))