All uniload.load for ddp should be the same

Otherwise the uniload cache doesn't work. This shaves a 365 ms off of
stats report for me (in a built release, which doesn't even use the
compiler!)
This commit is contained in:
David Glasser
2014-09-08 18:45:30 -07:00
parent 65ae593584
commit d6957bad00
2 changed files with 2 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ var getPackagesForAppIdInTest = function (currentProject) {
var connectToPackagesStatsServer = function () {
var Package = uniload.load({
packages: ["ddp"]
packages: ["meteor", "ddp"]
});
var conn = new ServiceConnection(
Package,

View File

@@ -190,7 +190,7 @@ exports.deployWithNewEmail = function (s, email, appName) {
var getLoadedPackages = function () {
return uniload.load({
packages: ['ddp']
packages: ['meteor', 'ddp']
});
};