Skip to content

Commit 80fccea

Browse files
committed
Merge pull request #8 from invertase/master
Fixes missing lodash require in utils.
2 parents 9674514 + 54eab23 commit 80fccea

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

libs/utils.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
* Created by jaumard on 12/05/2015.
33
*/
4+
var _ = require('lodash');
5+
46
module.exports = {
57
_bindToSails: function (sails, modules, cb) {
68
_.each(modules, function (module) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sails-util-mvcsloader",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Load models, controllers, services, policies and config from specified directories and inject them into the main Sails app.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)