don't enforce dependency check when running in dev mode

This commit is contained in:
psychobunny
2015-07-08 16:03:16 -04:00
parent 21ad15b13a
commit c1a6bd8b8f

View File

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