Skip to content

Commit

Permalink
Apply sds-green style
Browse files Browse the repository at this point in the history
  • Loading branch information
remvee committed Dec 5, 2024
1 parent 23c0d70 commit e81c039
Show file tree
Hide file tree
Showing 7 changed files with 3,378 additions and 214 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
/target/
/usage.txt.generated
eduhub-validator*
/generated
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ BABASHKA_VERSION:=1.3.188
exec_base_name=eduhub-validator
release_name=$(exec_base_name)-$(version)
source_files=$(shell find profiles src -type f)
source_files+=generated/resources/extra.css
current_arch=$(shell bb current_arch.clj)

# uberjar is the babashka uberjar (not a java-compatible jar)
Expand Down Expand Up @@ -92,3 +93,10 @@ README.md: usage.txt.generated README.src.md
release_check: README.md
# check that working tree is clean
exit $$(git status --porcelain | wc -l)

# Note the order of CSS files is important
sds_green_css_files=$(shell find assets/sds-green -name \*.css | sort)

generated/resources/extra.css: $(sds_green_css_files)
mkdir -p generated/resources
cat $(sds_green_css_files) > $@
Loading

0 comments on commit e81c039

Please sign in to comment.