Skip to content

Commit

Permalink
Update dev deps (#37)
Browse files Browse the repository at this point in the history
Updated dev dependencies
  • Loading branch information
lmammino authored Aug 21, 2016
1 parent 14db4c4 commit 22333c6
Show file tree
Hide file tree
Showing 6 changed files with 297 additions and 352 deletions.
9 changes: 7 additions & 2 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"disallowAnonymousFunctions": true
}
"disallowAnonymousFunctions": true,
"requireTrailingComma": false,
"requireSpaceBeforeObjectValues": false,
"requireSpacesInsideObjectBrackets": false,
"maximumLineLength": false,
"disallowMultipleLineStrings": false
}
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
1.1.3
- Update dependencies to solve security warnings ([loige](https://github.com/lmammino/flickr-set-get/pull/35))
- Updated dev dependencies ([loige](https://github.com/lmammino/flickr-set-get/pull/37))
- Update dependencies to solve security warnings ([loige](https://github.com/lmammino/flickr-set-get/pull/36))

1.1.2
-----
Expand Down
2 changes: 1 addition & 1 deletion lib/Flickr.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function Flickr(apiKey, options) {
info.photos = info.photos.concat(newInfo.photos);
callback(null, newInfo.photos);
});
}
};
})(page)

);
Expand Down
2 changes: 1 addition & 1 deletion lib/signature.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function signature(secret, params) {
.sort()
.forEach(function each(key) {
parts.push(key);
parts.push(params[key])
parts.push(params[key]);
});

return md5(parts.join(''));
Expand Down
Loading

0 comments on commit 22333c6

Please sign in to comment.