Skip to content

Commit

Permalink
Merge pull request #620 from KingDarBoja/fix/apply-linter
Browse files Browse the repository at this point in the history
Apply lint to fix Travis build
  • Loading branch information
raineorshine authored Jan 12, 2020
2 parents 7b0d321 + e9c10d4 commit 5d6f34d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/npm-check-updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,22 +192,22 @@ function analyzeProjectDependencies(options, pkgData, pkgFile) {
options.enginesNode = _.get(pkg, 'engines.node');
}

print(options, '\nOptions (partial):', 'verbose')
print(options, '\nOptions (partial):', 'verbose');
print(options, {
registry: options.registry ? options.registry : null,
pre: options.pre,
packageManager: options.packageManager,
json: options.json,
enginesNode: options.enginesNode
}, 'verbose')
}, 'verbose');

return vm.upgradePackageDefinitions(current, options).then(async ([upgraded, latest]) => {

print(options, '\nFetched:', 'verbose')
print(options, latest, 'verbose')
print(options, '\nFetched:', 'verbose');
print(options, latest, 'verbose');

print(options, '\nUpgraded:', 'verbose')
print(options, upgraded, 'verbose')
print(options, '\nUpgraded:', 'verbose');
print(options, upgraded, 'verbose');

const {newPkgData, selectedNewDependencies} = await vm.upgradePackageData(pkgData, current, upgraded, latest, options);

Expand Down

0 comments on commit 5d6f34d

Please sign in to comment.