mirror of
https://github.com/meteor/meteor.git
synced 2026-01-11 00:28:02 -05:00
Fixes #11215 by adding nodeModulesToRecompile to the cacheKey
This commit is contained in:
@@ -1263,7 +1263,9 @@ _.extend(PackageSource.prototype, {
|
||||
sourceRoot: self.sourceRoot,
|
||||
excludes: anyLevelExcludes,
|
||||
names: sourceReadOptions.names,
|
||||
include: sourceReadOptions.include
|
||||
include: sourceReadOptions.include,
|
||||
// stringify does not work on Set
|
||||
nodeModulesToRecompile: [...nodeModulesToRecompile],
|
||||
}, (key, value) => {
|
||||
if (_.isRegExp(value)) {
|
||||
return [value.source, value.flags];
|
||||
|
||||
Reference in New Issue
Block a user