Skip to content
This repository was archived by the owner on Aug 30, 2020. It is now read-only.

Commit 6cf03ad

Browse files
committed
Use new plugin definition syntax
1 parent 157e7e1 commit 6cf03ad

File tree

6 files changed

+387
-277
lines changed

6 files changed

+387
-277
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0] - XXXX-XX-XX
9+
10+
### Changed
11+
- Changed to use Tailwind 1.2’s new plugin definition syntax
12+
813
## [1.0.0] - 2019-09-29
914

1015
Initial release
1116

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
1319
[1.0.0]: https://github.com/benface/tailwindcss-animations/releases/tag/v1.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npm install tailwindcss-animations
1010

1111
```js
1212
// tailwind.config.js
13-
{
13+
module.exports = {
1414
theme: {
1515
animations: { // defaults to {}; the following are examples
1616
'spin': {
@@ -96,7 +96,7 @@ npm install tailwindcss-animations
9696
plugins: [
9797
require('tailwindcss-animations')(),
9898
],
99-
}
99+
};
100100
```
101101

102102
The above configuration would generate the following CSS:

0 commit comments

Comments
 (0)