Skip to content

Commit 0e94233

Browse files
committed
Updating dependencies
1 parent 3938e55 commit 0e94233

File tree

4 files changed

+22
-24
lines changed

4 files changed

+22
-24
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ var App = React.createClass({
7474
}
7575
});
7676

77-
React.renderComponent(<App/>, appElement);
77+
React.render(<App/>, appElement);
7878
```
7979

Diff for: examples/basic/app.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/** @jsx React.DOM */
21
var React = require('react');
32
var Modal = require('../../lib/index');
43

@@ -61,4 +60,4 @@ var App = React.createClass({
6160
}
6261
});
6362

64-
React.renderComponent(<App/>, appElement);
63+
React.render(<App/>, appElement);

Diff for: examples/bootstrap/app.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/** @jsx React.DOM */
21
var React = require('react');
32
var Modal = require('../../lib/index');
43

@@ -66,4 +65,4 @@ var App = React.createClass({
6665
}
6766
});
6867

69-
React.renderComponent(<App/>, appElement);
68+
React.render(<App/>, appElement);

Diff for: package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,29 @@
2121
],
2222
"license": "MIT",
2323
"devDependencies": {
24-
"browserify": "4.2.3",
25-
"browserify-shim": "3.6.0",
26-
"envify": "1.2.0",
27-
"expect": "0.1.1",
28-
"jsx-loader": "0.11.2",
29-
"karma": "0.12.16",
30-
"karma-browserify": "^0.2.1",
31-
"karma-chrome-launcher": "0.1.4",
32-
"karma-cli": "0.0.4",
33-
"karma-firefox-launcher": "0.1.3",
34-
"karma-mocha": "0.1.3",
35-
"mocha": "1.20.1",
36-
"react": ">=0.12.0",
37-
"reactify": "^0.14.0",
38-
"rf-release": "0.3.1",
39-
"uglify-js": "2.4.15",
40-
"webpack-dev-server": "1.6.5"
24+
"browserify": "10.2.6",
25+
"browserify-shim": "3.8.9",
26+
"envify": "3.4.0",
27+
"expect": "1.6.0",
28+
"jsx-loader": "0.13.2",
29+
"karma": "0.12.37",
30+
"karma-browserify": "^4.2.1",
31+
"karma-chrome-launcher": "0.2.0",
32+
"karma-cli": "0.1.0",
33+
"karma-firefox-launcher": "0.1.6",
34+
"karma-mocha": "0.2.0",
35+
"mocha": "2.2.5",
36+
"react": ">=0.13.3",
37+
"reactify": "^1.1.1",
38+
"rf-release": "0.4.0",
39+
"uglify-js": "2.4.23",
40+
"webpack-dev-server": "1.10.1"
4141
},
4242
"dependencies": {
43-
"classnames": "^1.2.0"
43+
"classnames": "^2.1.3"
4444
},
4545
"peerDependencies": {
46-
"react": ">=0.12.0"
46+
"react": ">=0.13.3"
4747
},
4848
"tags": [
4949
"react",

0 commit comments

Comments
 (0)