don't enforce dependency check when running in dev mode

v1.18.x
psychobunny 10 years ago
parent 21ad15b13a
commit c1a6bd8b8f

@ -35,7 +35,7 @@ module.exports = function(Meta) {
} }
}) })
}, function(ok) { }, function(ok) {
callback(!ok ? new Error('dependencies-out-of-date') : null); callback(!ok && global.env !== 'development' ? new Error('dependencies-out-of-date') : null);
}); });
}; };
}; };
Loading…
Cancel
Save