fix(require): require classNames throws error under Linux

The issue stems that Mac OS X uses a case-insensitive filesystem by
default, while most Linux filesystems are case-sensitive. The classNames
package will require successfully on Mac OS X during Travis tests, but
since the spec test suite isn't normally run under Linux this bug is
more unlikely to appear.
This commit is contained in:
mbilker 2015-12-08 19:42:36 -05:00
parent e275f353c1
commit a022718684

View file

@ -1,5 +1,5 @@
import _ from 'underscore';
import classNames from 'classNames';
import classNames from 'classnames';
import React, {Component, PropTypes} from 'react';
class EditableList extends Component {