Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dylansmith committed Aug 13, 2019
1 parent 47da224 commit a9315cd
Show file tree
Hide file tree
Showing 5 changed files with 3,462 additions and 11 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v10.16.2
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ your enhancements or bugfix.
* Swap out Grunt for Gulp
## Release History
* 1.2.1
* Updated dependencies
* 1.2.0
* Introduced filename conflict resolution via sequential filenaming
in response to [#9](https://github.com/dylansmith/node-exif-renamer/issues/9)
Expand Down
4 changes: 2 additions & 2 deletions demo/helpers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var S = require('string'),
var _ = require('lodash'),
path = require('path');

module.exports = {
Expand All @@ -11,7 +11,7 @@ module.exports = {
ul = ul || '=';
prefix = prefix || '';
suffix = suffix || '';
console.log(this.clr.whiteBright(prefix + text + '\n' + S(ul).repeat(text.length) + suffix));
console.log(this.clr.whiteBright(prefix + text + '\n' + _.repeat(ul, text.length) + suffix));
}

};
Loading

0 comments on commit a9315cd

Please sign in to comment.