-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparenscriptx.asd
More file actions
29 lines (27 loc) · 824 Bytes
/
parenscriptx.asd
File metadata and controls
29 lines (27 loc) · 824 Bytes
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
;;;; parenscriptx.asd
(asdf:defsystem #:parenscriptx
:description "Tool for generating React XJS templates"
:author "Jason Miller <aidenn0@geocities.com>"
:license "MIT/X11"
:depends-on (#:cl-who
#:parenscript
#:alexandria
#:split-sequence)
:serial t
:components ((:file "package")
(:file "parenscriptx")))
(asdf:defsystem #:parenscriptx/example
:description "Example from React tutorial"
:author "Jason Miller <aidenn0@geocities.com>"
:license "MIT/X11"
:depends-on (#:parenscriptx
#:cl-who
#:parenscript
#:split-sequence
#:cl-json
#:hunchentoot)
:serial t
:components ((:module "example"
:components
((:file "package")
(:file "code")))))