Skip to content

Commit

Permalink
New release!
Browse files Browse the repository at this point in the history
  • Loading branch information
chenglou committed Jun 22, 2015
1 parent 9cfd850 commit 5131dce
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ bower_components
bower.json
examples
index-bower.js
react-tween-state.sublime-*
index.js
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Legend:
- [I]: improvement
- [F]: fix

## 0.1.0 (June 21th 2015)
**Note**: this version is not compatible with React < 0.13.
- [I] Better API! See the [updated examples](https://github.com/chenglou/react-tween-state/tree/master/examples).
- [I] Library converted to ES7 with Babel.
- [I] Compatible with UMD.
- [F] See the note [here](https://github.com/chenglou/react-tween-state/wiki/Change-from-React-0.12-to-0.13).

### 0.0.5 (March 17th 2015)
**Note**: this is the last release compatible with React < 0.13!
- [I] Small optimizations.
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ var App = React.createClass({
});
```

### General

The library exports `Mixin`, `easingTypes` and `stackBehavior`.

#### `this.tweenState(path: String | Array<String>, configuration: Object)`
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-tween-state",
"main": "lib/index.js",
"version": "0.0.5",
"version": "0.1.0",
"homepage": "https://github.com/chenglou/react-tween-state",
"authors": [
"Cheng Lou <[email protected]>"
Expand Down
13 changes: 5 additions & 8 deletions examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define(factory);
else {
var a = factory();
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
}
else if(typeof exports === 'object')
exports["tweenState"] = factory();
else
root["tweenState"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down Expand Up @@ -134,10 +134,7 @@ return /******/ (function(modules) { // webpackBootstrap
'use strict';

(function webpackUniversalModuleDefinition(root, factory) {
if (true) module.exports = factory();else if (typeof define === 'function' && define.amd) define(factory);else {
var a = factory();
for (var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
}
if (true) module.exports = factory();else if (typeof define === 'function' && define.amd) define(factory);else if (typeof exports === 'object') exports['tweenState'] = factory();else root['tweenState'] = factory();
})(undefined, function () {
return ( /******/(function (modules) {
// webpackBootstrap
Expand Down
8 changes: 4 additions & 4 deletions lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-tween-state",
"version": "0.0.5",
"version": "0.1.0",
"description": "React animation.",
"main": "lib/index.js",
"directories": {
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = {
output: {
filename: './[name]/index.js',
libraryTarget: 'umd',
library: 'tweenState',
},
module: {
loaders: [
Expand Down

0 comments on commit 5131dce

Please sign in to comment.