mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #8978 from meteor/scan-non-core-packages-in-checkout
Scan non-core packages as local packages when running from checkout.
This commit is contained in:
@@ -651,7 +651,11 @@ _.extend(ProjectContext.prototype, {
|
||||
files.pathJoin(files.getCurrentToolsDir(), 'packages');
|
||||
|
||||
searchDirs.push(
|
||||
// Include packages like packages/ecmascript.
|
||||
packagesDir,
|
||||
// Include packages like packages/non-core/coffeescript.
|
||||
files.pathJoin(packagesDir, "non-core"),
|
||||
// Include packages like packages/non-core/blaze/packages/blaze.
|
||||
files.pathJoin(packagesDir, "non-core", "*", "packages"),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user