Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Sep 1, 2017
1 parent c7e56d6 commit e0606d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/package-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,11 @@ module.exports = class PackageManager {
}

preloadPackages () {
const result = [];
const result = []
for (const packageName in this.packagesCache) {
result.push(this.preloadPackage(packageName, this.packagesCache[packageName]));
result.push(this.preloadPackage(packageName, this.packagesCache[packageName]))
}
return result;
return result
}

preloadPackage (packageName, pack) {
Expand Down

0 comments on commit e0606d5

Please sign in to comment.