Skip to content

Commit

Permalink
Add explicit underscore-plus dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Feb 19, 2014
1 parent fb23975 commit c661426
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 2 additions & 1 deletion lib/bracket-matcher-view.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{_, Range, View} = require 'atom'
_ = require 'underscore-plus'
{Range, View} = require 'atom'

startPairMatches =
'(': ')'
Expand Down
2 changes: 1 addition & 1 deletion lib/bracket-matcher.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{_} = require 'atom'
_ = require 'underscore-plus'
BracketMatcherView = require './bracket-matcher-view'

module.exports =
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"repository": "https://github.com/atom/bracket-matcher",
"engines": {
"atom": "*"
},
"dependencies": {
"underscore-plus": "1.x"
}
}

0 comments on commit c661426

Please sign in to comment.