a8b1b57b85
GitOrigin-RevId: fc4148a47fa927319186061aa42633c8aa5777f1
15 lines
352 B
Nix
15 lines
352 B
Nix
{ runCommand, tailwindcss }:
|
|
|
|
let
|
|
inherit (tailwindcss) packageName version;
|
|
in
|
|
|
|
runCommand "${packageName}-tests" { meta.timeout = 60; }
|
|
''
|
|
# Ensure CLI runs
|
|
${tailwindcss}/bin/tailwind --help > /dev/null
|
|
${tailwindcss}/bin/tailwindcss --help > /dev/null
|
|
|
|
# Needed for Nix to register the command as successful
|
|
touch $out
|
|
''
|