Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
Use find() from Lodash
Browse files Browse the repository at this point in the history
Fixes #73
  • Loading branch information
gaearon committed Mar 5, 2016
1 parent b8f5c6f commit 6bb8c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
"components"
],
"dependencies": {
"array-find": "^1.0.0"
"lodash": "^4.6.1"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import find from 'array-find';
import find from 'lodash/find';

export default function({ types: t, template }) {
function matchesPatterns(path, patterns) {
Expand Down

0 comments on commit 6bb8c60

Please sign in to comment.