Move src files to root src dir

This commit is contained in:
Marcus Kammer 2024-04-21 11:24:19 +02:00
parent 72eb100fd6
commit 17e0030142
Signed by: marcuskammer
GPG key ID: C374817BE285268F
17 changed files with 5 additions and 25 deletions

View file

@ -10,18 +10,9 @@
((:file "main")
(:file "translate")
(:file "utility")
(:file "bi")))
(:module "src/layout"
:depends-on ("src")
:components
((:file "grid")))
(:module "src/component"
;;
;; Components are the building blocks for Patterns
;;
:depends-on ("src")
:components
((:file "accordion")
(:file "bi")
(:file "grid")
(:file "accordion")
(:file "alert")
(:file "badge")
(:file "button")
@ -33,20 +24,9 @@
(:file "pagination")
(:file "table")
(:file "spinner")
(:file "form")))
(:module "src/pattern"
;;
;; Patterns are built on top of components and define their own
;; DSL to create specific things
;;
:depends-on ("src" "src/component")
:components
((:file "questionnaire")))
(:file "form")
(:file "questionnaire")))
(:module "examples"
;;
;; Examples show how different patterns work together
;;
:depends-on ("src/pattern")
:components
((:file "album"))))
: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."