forked from raineorshine/npm-check-updates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.js
More file actions
156 lines (143 loc) · 4.71 KB
/
Copy pathlogging.js
File metadata and controls
156 lines (143 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
* Loggin functions.
*/
const Table = require('cli-table')
let chalk = require('chalk')
const { colorizeDiff, isGithubUrl, getGithubUrlTag, isNpmAlias, parseNpmAlias } = require('./version-util')
const { getRepoUrl } = require('./repo-url')
// maps string levels to numeric levels
const logLevels = {
silent: 0,
error: 1,
minimal: 2,
warn: 3,
info: 4,
verbose: 5,
silly: 6
}
/**
* Prints a message if it is included within options.loglevel.
*
* @param options Command line options. These will be compared to the loglevel parameter to determine if the message gets printed.
* @param message The message to print
* @param loglevel silent|error|warn|info|verbose|silly
* @param method The console method to call. Default: 'log'.
*/
function print(options, message, loglevel, method = 'log') {
// not in json mode
// not silent
// not at a loglevel under minimum specified
if (!options.json && options.loglevel !== 'silent' && (loglevel == null || logLevels[options.loglevel] >= logLevels[loglevel])) {
console[method](message)
}
}
function printJson(options, object) {
if (options.loglevel !== 'silent') {
console.log(JSON.stringify(object, null, 2))
}
}
function createDependencyTable() {
return new Table({
colAligns: ['left', 'right', 'right', 'right', 'left', 'left'],
chars: {
top: '',
'top-mid': '',
'top-left': '',
'top-right': '',
bottom: '',
'bottom-mid': '',
'bottom-left': '',
'bottom-right': '',
left: '',
'left-mid': '',
mid: '',
'mid-mid': '',
right: '',
'right-mid': '',
middle: ''
}
})
}
/**
* @param args
* @param args.from
* @param args.to
* @param args.ownersChangedDeps
* @param args.format Array of strings from the --format CLI arg
*/
function toDependencyTable({ from: fromDeps, to: toDeps, ownersChangedDeps, format }) {
const table = createDependencyTable()
const rows = Object.keys(toDeps).map(dep => {
const from = fromDeps[dep] || ''
const toRaw = toDeps[dep] || ''
const to = isGithubUrl(toRaw) ? getGithubUrlTag(toRaw)
: isNpmAlias(toRaw) ? parseNpmAlias(toRaw)[1]
: toRaw
const ownerChanged = ownersChangedDeps
? dep in ownersChangedDeps
? ownersChangedDeps[dep] ? '*owner changed*' : ''
: '*unknown*'
: ''
const toColorized = colorizeDiff(from, to)
const repoUrl = format.includes('repo')
? getRepoUrl(dep) || ''
: ''
return [dep, from, '→', toColorized, ownerChanged, repoUrl]
})
rows.forEach(row => table.push(row)) // eslint-disable-line fp/no-mutating-methods
return table
}
/**
* @param options - Options from the configuration
* @param args - The arguments passed to the function.
* @param args.current - The current packages.
* @param args.upgraded - The packages that should be upgraded.
* @param args.numUpgraded - The number of upgraded packages
* @param args.total - The total number of all possible upgrades
* @param args.ownersChangedDeps - Boolean flag per dependency which announces if package owner changed.
*/
function printUpgrades(options, { current, upgraded, numUpgraded, total, ownersChangedDeps }) {
if (options.color) {
chalk = new chalk.Instance({ level: 1 })
}
print(options, '')
// print everything is up-to-date
const smiley = chalk.green.bold(':)')
if (numUpgraded === 0 && total === 0) {
if (Object.keys(current).length === 0) {
print(options, 'No dependencies.')
}
else if (options.global) {
print(options, `All global packages are up-to-date ${smiley}`)
}
else {
print(options, `All dependencies match the ${options.target} package versions ${smiley}`)
}
}
else if (numUpgraded === 0 && total > 0) {
print(options, `All dependencies match the desired package versions ${smiley}`)
}
// print table
if (numUpgraded > 0) {
const table = toDependencyTable({
from: current,
to: upgraded,
ownersChangedDeps,
format: options.format,
})
print(options, table.toString())
}
}
function printIgnoredUpdates(options, ignoredUpdates) {
print(options, `\nIgnored incompatible updates (peer dependencies):\n`)
const table = createDependencyTable()
const rows = Object.entries(ignoredUpdates).map(([pkgName, { from, to, reason }]) => {
const strReason = 'reason: ' + Object.entries(reason)
.map(([pkgReason, requirement]) => pkgReason + ' requires ' + requirement)
.join(', ')
return [pkgName, from, '→', colorizeDiff(from, to), strReason]
})
rows.forEach(row => table.push(row)) // eslint-disable-line fp/no-mutating-methods
print(options, table.toString())
}
module.exports = { print, printJson, printUpgrades, toDependencyTable, printIgnoredUpdates }