-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b1a381
commit ec018da
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
Package.describe({ | ||
name: 'rahul:animate-everything', | ||
summary: "Patch the hot code reload CSS live injection feature to transition all CSS changes.", | ||
summary: "Patch the hot code reload CSS live injection " + | ||
"feature to transition all CSS changes.", | ||
version: "1.0.2", | ||
git: "https://github.com/Primigenus/animate-everything.git", | ||
debugOnly: true | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.0'); | ||
api.addFiles('rahul-animate-everything.css'); | ||
api.addFiles('style.css'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* { -webkit-transition: ease .2s; transition: ease .2s; } |