Skip to content

Commit

Permalink
Release 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Jan 5, 2022
1 parent 405be7f commit 48a2f13
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG

## v0.1.3 (2022-01-04)
* Bump tailwindcss to v3.0.10
* Inject tailwind imports into app.css on install
* Prune phoenix.css import from app.css on install

## v0.1.2 (2021-12-21)
* Fix tailwind v3 warnings and simplify generated `assets/tailwind.config.js` configuration

Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -34,7 +34,7 @@ Once installed, change your `config/config.exs` to pick your
tailwind version of choice:

```elixir
config :tailwind, version: "3.0.7"
config :tailwind, version: "3.0.10"
```

Now you can install tailwind by running:
Expand All @@ -61,7 +61,7 @@ directory, the OS environment, and default arguments to the

```elixir
config :tailwind,
version: "3.0.7",
version: "3.0.10",
default: [
args: ~w(
--config=tailwind.config.js
Expand Down Expand Up @@ -99,7 +99,7 @@ as our css entry point:

```elixir
config :tailwind,
version: "3.0.7",
version: "3.0.10",
default: [
args: ~w(
--config=tailwind.config.js
Expand All @@ -118,7 +118,7 @@ the web application's asset directory in the configuration:

```elixir
config :tailwind,
version: "3.0.7",
version: "3.0.10",
default: [
args: ...,
cd: Path.expand("../apps/<folder_ending_with_web>/assets", __DIR__)
Expand Down
2 changes: 1 addition & 1 deletion config/config.exs
@@ -1,7 +1,7 @@
import Config

config :tailwind,
version: "3.0.7",
version: "3.0.10",
another: [
args: ["--help"]
]
2 changes: 1 addition & 1 deletion mix.exs
@@ -1,7 +1,7 @@
defmodule Tailwind.MixProject do
use Mix.Project

@version "0.1.2"
@version "0.1.3"
@source_url "https://github.com/phoenixframework/tailwind"

def project do
Expand Down

0 comments on commit 48a2f13

Please sign in to comment.