Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabriskie committed Jul 15, 2015
1 parent 3938e55 commit 0e94233
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ var App = React.createClass({
}
});

React.renderComponent(<App/>, appElement);
React.render(<App/>, appElement);
```

3 changes: 1 addition & 2 deletions examples/basic/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/** @jsx React.DOM */
var React = require('react');
var Modal = require('../../lib/index');

Expand Down Expand Up @@ -61,4 +60,4 @@ var App = React.createClass({
}
});

React.renderComponent(<App/>, appElement);
React.render(<App/>, appElement);
3 changes: 1 addition & 2 deletions examples/bootstrap/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/** @jsx React.DOM */
var React = require('react');
var Modal = require('../../lib/index');

Expand Down Expand Up @@ -66,4 +65,4 @@ var App = React.createClass({
}
});

React.renderComponent(<App/>, appElement);
React.render(<App/>, appElement);
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,29 @@
],
"license": "MIT",
"devDependencies": {
"browserify": "4.2.3",
"browserify-shim": "3.6.0",
"envify": "1.2.0",
"expect": "0.1.1",
"jsx-loader": "0.11.2",
"karma": "0.12.16",
"karma-browserify": "^0.2.1",
"karma-chrome-launcher": "0.1.4",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "0.1.3",
"karma-mocha": "0.1.3",
"mocha": "1.20.1",
"react": ">=0.12.0",
"reactify": "^0.14.0",
"rf-release": "0.3.1",
"uglify-js": "2.4.15",
"webpack-dev-server": "1.6.5"
"browserify": "10.2.6",
"browserify-shim": "3.8.9",
"envify": "3.4.0",
"expect": "1.6.0",
"jsx-loader": "0.13.2",
"karma": "0.12.37",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "0.2.0",
"karma-cli": "0.1.0",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.2.0",
"mocha": "2.2.5",
"react": ">=0.13.3",
"reactify": "^1.1.1",
"rf-release": "0.4.0",
"uglify-js": "2.4.23",
"webpack-dev-server": "1.10.1"
},
"dependencies": {
"classnames": "^1.2.0"
"classnames": "^2.1.3"
},
"peerDependencies": {
"react": ">=0.12.0"
"react": ">=0.13.3"
},
"tags": [
"react",
Expand Down

0 comments on commit 0e94233

Please sign in to comment.