-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwt.javascript.asd
More file actions
38 lines (36 loc) · 1.38 KB
/
wt.javascript.asd
File metadata and controls
38 lines (36 loc) · 1.38 KB
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
;;;; -*- Mode: LISP -*-
(defsystem wt.javascript
:author "Xiangyu He"
:mailto "xh@coobii.com"
:license "BSD 3-Clause"
:depends-on (:alexandria
:cl-ppcre
:closer-mop)
:defsystem-depends-on (:wt.vendor)
:components ((:module "javascript"
:serial t
:components ((:file "package")
(:file "utility")
(:file "condition")
(:file "estree")
(:file "character")
(:file "scanner")
(:file "tokenizer")
(:file "parser")
(:file "serializer"))))
:in-order-to ((test-op (test-op :wt.javascript/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :javascript hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.javascript/test
:depends-on (:wt.javascript
:wt.http
:wt.test)
:components ((:module "test/javascript"
:serial t
:components ((:file "package")
(:file "helper")
(:file "vendor")
(:file "es6"))))
:perform (test-op (o c)
(symbol-call :test :run! :javascript-test)))