8 lines
252 B
Text
8 lines
252 B
Text
|
#!/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
|
||
|
}
|
||
|
|