Skip to content

Commit

Permalink
Merge pull request #4 from wlach/lodash
Browse files Browse the repository at this point in the history
Replace underscore dependency with lodash
  • Loading branch information
Quentin Rossetti committed Aug 20, 2018
2 parents bde2311 + b2d3bf0 commit 934e11c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
var _ = require('underscore');
var _ = require('lodash');

/**
* Read a list of versions an sort it.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"homepage": "https://github.com/quentinrossetti/version-sort",
"dependencies": {
"underscore": "^1.6.0"
"lodash": "^4.0.0"
},
"devDependencies": {
"chai": "^1.9.1",
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
'use strict';
var _ = require('underscore');
var _ = require('lodash');
var chai = require('chai');
var sorter = require('..');

Expand Down

0 comments on commit 934e11c

Please sign in to comment.