Skip to content

Commit

Permalink
Clean up Tailwind command
Browse files Browse the repository at this point in the history
Don't need to specify the template.
  • Loading branch information
noelwelsh committed Aug 16, 2024
1 parent 18f7e91 commit 057d029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ lazy val root = (project in file("."))
// Run this command if you update the CSS
css := {
val cmd =
s"npx tailwindcss -i ${sourceDirectory.value.toString}/main/css/creative-scala.css ${sourceDirectory.value.toString}/main/resources/creativescala/templates/default.template.html -o src/main/resources/creativescala/css/creative-scala.css"
s"npx tailwindcss -i ${sourceDirectory.value.toString}/main/css/creative-scala.css -o src/main/resources/creativescala/css/creative-scala.css"
println(cmd)
cmd.!
},
Expand Down

0 comments on commit 057d029

Please sign in to comment.