0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

🐛 add missing dependency lodash.orderBy (#7333)

no issue
This commit is contained in:
Katharina Irrgang 2016-09-14 10:22:16 +00:00 committed by Hannah Wolfe
parent 5f4da361aa
commit 8c1e5fbc61
3 changed files with 7 additions and 1 deletions

View file

@ -5,7 +5,10 @@
// **Usage instructions:** can be found in the [Custom Tasks](#custom%20tasks) section or by running `grunt --help`.
//
// **Debug tip:** If you have any problems with any Grunt tasks, try running them with the `--verbose` command
var _ = require('lodash'),
// jshint unused: false
var overrides = require('./core/server/overrides'),
_ = require('lodash'),
chalk = require('chalk'),
fs = require('fs-extra'),
path = require('path'),

View file

@ -5,6 +5,7 @@ var moment = require('moment-timezone'),
toString = require('lodash.tostring'),
pickBy = require('lodash.pickby'),
uniqBy = require('lodash.uniqby'),
orderBy = require('lodash.orderby'),
omitBy = require('lodash.omitby');
/**
@ -25,3 +26,4 @@ _.toString = toString;
_.omitBy = omitBy;
_.uniqBy = uniqBy;
_.pickBy = pickBy;
_.orderBy = orderBy;

View file

@ -56,6 +56,7 @@
"lodash": "3.10.1",
"lodash.frompairs": "4.0.1",
"lodash.omitby": "4.6.0",
"lodash.orderby": "4.6.0",
"lodash.pickby": "4.6.0",
"lodash.topairs": "4.3.0",
"lodash.tostring": "4.1.4",