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