This repository was archived by the owner on Aug 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +387
-277
lines changed Expand file tree Collapse file tree 6 files changed +387
-277
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project mostly adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 2.0.0] - XXXX-XX-XX
9
+
10
+ ### Changed
11
+ - Changed to use Tailwind 1.2’s new plugin definition syntax
12
+
8
13
## [ 1.0.0] - 2019-09-29
9
14
10
15
Initial release
11
16
12
- [ Unreleased ] : https://github.com/benface/tailwindcss-animations/compare/v1.0.0...HEAD
17
+ [ Unreleased ] : https://github.com/benface/tailwindcss-animations/compare/v2.0.0...HEAD
18
+ [ 2.0.0 ] : https://github.com/benface/tailwindcss-animations/compare/v1.0.0...v2.0.0
13
19
[ 1.0.0 ] : https://github.com/benface/tailwindcss-animations/releases/tag/v1.0.0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ npm install tailwindcss-animations
10
10
11
11
``` js
12
12
// tailwind.config.js
13
- {
13
+ module . exports = {
14
14
theme: {
15
15
animations: { // defaults to {}; the following are examples
16
16
' spin' : {
@@ -96,7 +96,7 @@ npm install tailwindcss-animations
96
96
plugins: [
97
97
require (' tailwindcss-animations' )(),
98
98
],
99
- }
99
+ };
100
100
```
101
101
102
102
The above configuration would generate the following CSS:
You can’t perform that action at this time.
0 commit comments