Skip to content

Commit

Permalink
Clean some stuff up
Browse files Browse the repository at this point in the history
  • Loading branch information
Primigenus committed Oct 10, 2015
1 parent 5b1a381 commit ec018da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

![Animate all the things!](http://cdn.meme.am/instances/500x/56054217.jpg)

This package upgrades the hot code reload system's CSS live injection feature to automatically transition all CSS changes. Try it by adding the package, opening your CSS file, and changing something obvious like the background colour of the page.
This package upgrades the hot code reload system's CSS live injection feature to
automatically transition all CSS changes. Try it by adding the package, opening
your CSS file, and changing something obvious like the background colour of the
page.

# License

Expand Down
5 changes: 3 additions & 2 deletions package.js
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');
});
1 change: 1 addition & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* { -webkit-transition: ease .2s; transition: ease .2s; }

0 comments on commit ec018da

Please sign in to comment.