Fix indentation

This commit is contained in:
Marcus Kammer 2023-07-15 08:31:27 +02:00
parent 09042ab8ab
commit 7cb1621bd8
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -5,22 +5,25 @@
:depends-on (:spinneret) :depends-on (:spinneret)
:components ((:module "src" :components ((:module "src"
:components :components
((:file "main") ((:file "main")
(:file "page"))) (:file "page")))
(:module "src/component" (:module "src/component"
:components :components
((:file "accordion") ((:file "accordion")
(:file "alert") (:file "alert")
(:file "badge") (:file "badge")
(:file "button") (:file "button")
(:file "card") (:file "card")
(:file "dropdown") (:file "dropdown")
(:file "list-group") (:file "list-group")
(:file "navbar") (:file "navbar")
(:file "nav-tab") (:file "nav-tab")
(:file "pagination") (:file "pagination")
(:file "table") (:file "table")
(:file "spinner")))) (:file "spinner")))
(:module "src/layout"
:components
((:file "col"))))
:description "A Common Lisp library for generating Bootstrap-based HTML markup. It provides macros to easily create Bootstrap components such as accordions, alerts, badges, buttons, cards, dropdowns, headers, list groups, navbars, nav-tabs, pagination, and tables. This library is dependent on the Spinneret library for HTML generation." :description "A Common Lisp library for generating Bootstrap-based HTML markup. It provides macros to easily create Bootstrap components such as accordions, alerts, badges, buttons, cards, dropdowns, headers, list groups, navbars, nav-tabs, pagination, and tables. This library is dependent on the Spinneret library for HTML generation."
:in-order-to ((test-op (test-op "cl-sbt/tests")))) :in-order-to ((test-op (test-op "cl-sbt/tests"))))
@ -30,12 +33,12 @@
:depends-on ("cl-sbt") :depends-on ("cl-sbt")
:components ((:module "examples/album" :components ((:module "examples/album"
:components :components
((:file "index") ((:file "index")
(:file "part/header") (:file "part/header")
(:file "part/main") (:file "part/main")
(:file "part/footer") (:file "part/footer")
(:file "part/navbar") (:file "part/navbar")
(:file "part/card"))))) (:file "part/card")))))
(defsystem "cl-sbt/tests" (defsystem "cl-sbt/tests"
:author "Marcus Kammer" :author "Marcus Kammer"
@ -44,6 +47,6 @@
"rove") "rove")
:components ((:module "tests" :components ((:module "tests"
:components :components
((:file "main")))) ((:file "main"))))
:description "Test system for cl-sbt" :description "Test system for cl-sbt"
:perform (test-op (op c) (symbol-call :rove :run c))) :perform (test-op (op c) (symbol-call :rove :run c)))