Fix lodash 4.0.0 breaking changes
This commit is contained in:
parent
a5b888a719
commit
c475e4af84
|
@ -713,7 +713,7 @@ function buildAllMixinInstructions(appRootDir, mixinDirs, mixinSources, options,
|
|||
|
||||
// Fetch unique list of mixin names, used in models
|
||||
var modelMixins = fetchMixinNamesUsedInModelInstructions(modelInstructions);
|
||||
modelMixins = _.unique(modelMixins);
|
||||
modelMixins = _.uniq(modelMixins);
|
||||
|
||||
// Filter-in only mixins, that are used in models
|
||||
instructionsFromMixinSources = filterMixinInstructionsUsingWhitelist(
|
||||
|
|
Loading…
Reference in New Issue