Skip to content

Commit

Permalink
Merge pull request #66 from lencioni/lodash
Browse files Browse the repository at this point in the history
Replace lodash per-method packages with scoped imports
  • Loading branch information
hshoff authored Jun 14, 2017
2 parents ea93758 + 401780b commit a62e215
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/vx-responsive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"regenerator-runtime": "^0.10.5"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash": "^4.0.8",
"react": "^15.4.2"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-responsive/src/enhancers/withParentSize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';

export default function withParentSize(BaseComponent) {
class WrappedComponent extends React.Component {
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-responsive/src/enhancers/withScreenSize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';

export default function withScreenSize(BaseComponent) {
class WrappedComponent extends React.Component {
Expand Down

0 comments on commit a62e215

Please sign in to comment.