-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassie.asd
28 lines (27 loc) · 874 Bytes
/
classie.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
(defsystem "classie"
:version "0.1.0"
:author "Nikolai Matiushev"
:license "MIT"
:depends-on ("alexandria"
"cl-colors"
"cl-fad"
"dufy"
"lass"
"parse-float"
"physical-quantities")
:components ((:module "src"
:components
((:file "main")
(:file "asdf"))))
:description "CLassie is the best friend of LASS - utility and functions for translating SCSS to LASS"
:in-order-to ((test-op (test-op "lassie/tests"))))
(defsystem "lassie/tests"
:author "Nikolai Matiushev"
:license "MIT"
:depends-on ("classie"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for classie"
:perform (test-op (op c) (symbol-call :rove :run c)))