Skip to content

Commit 76c87bf

Browse files
committedMar 29, 2015
[changed] Updated ESLint dev-dependency
1 parent e0af7d3 commit 76c87bf

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎docs/src/ReactPlayground.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,19 @@ const ReactPlayground = React.createClass({
223223
let mountNode = this.refs.mount.getDOMNode();
224224
try {
225225
React.unmountComponentAtNode(mountNode);
226-
} catch (e) { }
226+
} catch (e) {
227+
console.error(e);
228+
}
227229
},
228230

229231
executeCode() {
230232
let mountNode = this.refs.mount.getDOMNode();
231233

232234
try {
233235
React.unmountComponentAtNode(mountNode);
234-
} catch (e) { }
236+
} catch (e) {
237+
console.error(e);
238+
}
235239

236240
try {
237241
let compiledCode = this.compileCode();

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"colors": "^1.0.3",
4646
"css-loader": "^0.9.1",
4747
"es5-shim": "^4.1.0",
48-
"eslint": "^0.17.1",
48+
"eslint": "^0.18.0",
4949
"eslint-plugin-react": "^1.6.0",
5050
"express": "^3.4.8",
5151
"extract-text-webpack-plugin": "^0.3.8",

0 commit comments

Comments
 (0)