Skip to content

Commit

Permalink
feat(package.json): upgrade to React@^0.14
Browse files Browse the repository at this point in the history
BREAKING CHANGE

__React@^0.14__: upgrade at peerDependencies
	* move __React@^0.14__ and __classnames@^2.1.5__ from dependencies to peerDependencies
	* also add __fbjs^0.3.1__ to peerDependencies
  • Loading branch information
tomchentw committed Oct 8, 2015
1 parent bd93466 commit c1cfc28
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,21 @@
},
"homepage": "https://tomchentw.github.io/react-toastr/",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.20",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.3",
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"classnames": "^2.1.5",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"fbjs": "^0.3.1",
"jquery": "^2.1.4",
"tomchentw-npm-dev": "^3.0.0"
},
"dependencies": {
"classnames": "^2.1.2",
"react": "^0.13.0"
"react": "^0.14.0",
"react-dom": "^0.14.0",
"tomchentw-npm-dev": "^3.1.0"
},
"peerDependencies": {
"classnames": "^2.1.2",
"react": "^0.13.0"
"classnames": "^2.1.5",
"fbjs": "^0.3.1",
"react": "^0.14.0"
}
}
2 changes: 1 addition & 1 deletion src/ToastMessage/animationMixin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

var CSSCore = require("react/lib/CSSCore");
var CSSCore = require("fbjs/lib/CSSCore");
var ReactTransitionEvents = require("react/lib/ReactTransitionEvents");
var TICK = 17;
var {toString} = Object.prototype;
Expand Down

0 comments on commit c1cfc28

Please sign in to comment.