From ed7a5823cd06e9bae250101d79f355a472b24902 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 6 Nov 2014 11:05:05 -0800 Subject: [PATCH] Don't refresh the package cache on the first run Part of #3006. --- tools/run-app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-app.js b/tools/run-app.js index b70f81ef33..1eb75e9e90 100644 --- a/tools/run-app.js +++ b/tools/run-app.js @@ -496,7 +496,7 @@ _.extend(AppRunner.prototype, { // a single invocation of _runOnce(). var cachedServerWatchSet; var bundleApp = function () { - if (! self.firstRun) { + if (! options.firstRun) { // Pick up changes to packages. (Soft refresh, so we still check to see // if they have changed.) catalog.complete.packageCache.refresh(true);