7 lines
252 B
Text
Executable file
7 lines
252 B
Text
Executable file
#!/usr/bin/env nu
|
|
if $env.TRUNK_PROFILE == "debug" {
|
|
npx tailwindcss -i stylesheets/index.css -o $"($env.TRUNK_STAGING_DIR)/tailwind.css"
|
|
} else {
|
|
npx tailwindcss -i stylesheets/index.css -o $"($env.TRUNK_STAGING_DIR)/tailwind.css" --minify
|
|
}
|
|
|