-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "wrap" to exports. #489
Conversation
@@ -0,0 +1,9 @@ | |||
var _ = require('underscore'); | |||
var deepEqual = require('assert').deepEqual; | |||
var s = require('../dist/underscore.string'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you change this to
- var s = require('../dist/underscore.string');
+ var s = require('../');
otherwise this looks good.
btw. to run the tests locally you can just run |
Fixes a bug introduced in esamattis#410.
@stoeffel I made the change you requested (also changed a usage of double quotes to single quotes, as it appears that you are standardizing on single quotes) and squashed the commit. Thanks for pushing out a release so quickly! I took a look at #481 and #482, but don't really have the background to review them. |
finally published |
@stoeffel Here is my PR to fix the exports function.