Skip to content

Commit

Permalink
Update npm modules
Browse files Browse the repository at this point in the history
  • Loading branch information
koistya committed Jun 4, 2015
1 parent e6e3a97 commit f069e0a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
"devDependencies": {
"autoprefixer-core": "^5.2.0",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.10",
"babel-eslint": "^3.1.11",
"babel-loader": "^5.1.3",
"browser-sync": "^2.7.6",
"css-loader": "^0.14.4",
"del": "^1.2.0",
"eslint": "^0.21.2",
"eslint-loader": "^0.11.2",
"eslint-plugin-react": "^2.4.0",
"eslint": "^0.22.1",
"eslint-loader": "^0.12.0",
"eslint-plugin-react": "^2.5.0",
"git-push": "^0.1.1",
"gulp": "^3.9.0",
"gulp-changed": "^1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/withContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React, { PropTypes } from 'react'; // eslint-disable-line no-unused-vars
import emptyFunction from '../../node_modules/react/lib/emptyFunction';

function withContext(ComposedComponent) {
return class WithContext { // eslint-disable-line no-undef
return class WithContext {

static propTypes = {
context: PropTypes.shape({
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/withStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { canUseDOM } from '../../node_modules/react/lib/ExecutionEnvironment';
let count = 0;

function withStyles(styles) {
return (ComposedComponent) => class WithStyles { // eslint-disable-line no-undef
return (ComposedComponent) => class WithStyles {

static contextTypes = {
onInsertCss: PropTypes.func
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/withViewport.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function handleWindowResize() {
}

function withViewport(ComposedComponent) {
return class WithViewport extends Component { // eslint-disable-line no-undef
return class WithViewport extends Component {

constructor() {
super();
Expand Down

0 comments on commit f069e0a

Please sign in to comment.