Skip to content

Commit

Permalink
Update versions in README
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumm committed Sep 21, 2021
1 parent cad867d commit edc1e99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in dev:
```elixir
def deps do
[
{:dart_sass, "~> 0.1", runtime: Mix.env() == :dev}
{:dart_sass, "~> 0.2", runtime: Mix.env() == :dev}
]
end
```
Expand All @@ -24,7 +24,7 @@ then it only needs to be a dev dependency:
```elixir
def deps do
[
{:dart_sass, "~> 0.1", only: :dev}
{:dart_sass, "~> 0.2", only: :dev}
]
end
```
Expand All @@ -33,7 +33,7 @@ Once installed, change your `config/config.exs` to pick your
dart_sass version of choice:

```elixir
config :dart_sass, version: "1.36.0"
config :dart_sass, version: "1.39.0"
```

Now you can install dart-sass by running:
Expand Down Expand Up @@ -89,7 +89,7 @@ First add it as a dependency in your `mix.exs`:
def deps do
[
{:phoenix, "~> 1.6.0-rc.0"},
{:dart_sass, "~> 0.1", runtime: Mix.env() == :dev}
{:dart_sass, "~> 0.2", runtime: Mix.env() == :dev}
]
end
```
Expand Down

0 comments on commit edc1e99

Please sign in to comment.