Skip to content

Commit 3783799

Browse files
committed
fix: Actually add packages we depend on to our dependencies list.
1 parent f0bea87 commit 3783799

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const hoistStatics = require('hoist-non-react-statics');
22
const { Component, createElement } = require('react');
3-
const debounceFn = require('lodash/debounce');
4-
const isArray = require('lodash/isArray');
3+
const debounceFn = require('lodash.debounce');
4+
const isArray = require('lodash.isArray');
55

66
function getDisplayName(name) {
77
return `connectBackboneToReact(${name})`;

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
],
2525
"dependencies": {
2626
"hoist-non-react-statics": "^1.2.0",
27+
"lodash.debounce": "^4.0.8",
28+
"lodash.isarray": "^4.0.0",
2729
"react": "^15.4.2"
2830
},
2931
"devDependencies": {

0 commit comments

Comments
 (0)