File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import Config
2
2
3
3
config :tailwind ,
4
- version: "4.0.0-beta.3 " ,
4
+ version: "4.0.0" ,
5
5
another: [
6
6
args: [ "--help" ]
7
7
]
Original file line number Diff line number Diff line change 1
1
defmodule Tailwind do
2
2
# https://github.com/tailwindlabs/tailwindcss/releases
3
- @ latest_version "4.0.0-beta.3 "
3
+ @ latest_version "4.0.0"
4
4
5
5
@ moduledoc """
6
6
Tailwind is an installer and runner for [tailwind](https://tailwindcss.com/).
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ defmodule TailwindTest do
30
30
end
31
31
32
32
test "updates on install" do
33
- Application . put_env ( :tailwind , :version , "3.0.3 " )
33
+ Application . put_env ( :tailwind , :version , "3.4.17 " )
34
34
Mix.Task . rerun ( "tailwind.install" , [ "--if-missing" ] )
35
35
36
36
assert ExUnit.CaptureIO . capture_io ( fn ->
37
37
assert Tailwind . run ( :default , [ "--help" ] ) == 0
38
- end ) =~ "3.0.3 "
38
+ end ) =~ "3.4.17 "
39
39
40
40
Application . delete_env ( :tailwind , :version )
41
41
You can’t perform that action at this time.
0 commit comments