Skip to content

Commit

Permalink
[changed] Updated ESLint dev-dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mtscout6 committed Mar 29, 2015
1 parent e0af7d3 commit 76c87bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions docs/src/ReactPlayground.js
Expand Up @@ -223,15 +223,19 @@ const ReactPlayground = React.createClass({
let mountNode = this.refs.mount.getDOMNode();
try {
React.unmountComponentAtNode(mountNode);
} catch (e) { }
} catch (e) {
console.error(e);
}
},

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

try {
React.unmountComponentAtNode(mountNode);
} catch (e) { }
} catch (e) {
console.error(e);
}

try {
let compiledCode = this.compileCode();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -45,7 +45,7 @@
"colors": "^1.0.3",
"css-loader": "^0.9.1",
"es5-shim": "^4.1.0",
"eslint": "^0.17.1",
"eslint": "^0.18.0",
"eslint-plugin-react": "^1.6.0",
"express": "^3.4.8",
"extract-text-webpack-plugin": "^0.3.8",
Expand Down

0 comments on commit 76c87bf

Please sign in to comment.