-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmissing.js
64 lines (45 loc) · 1.69 KB
/
missing.js
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
const { compose, includes, not, when } = require('ramda')
const isModuleAvailable = require('./is-module-available')
const { hasAnyDep } = require('./utils')
const { CONFIG_NAME } = require('../constants')
const ADJUCT = 'eslint-config-adjunct'
const notIncludes = (str) => compose(not, includes(str))
const atLatest = when(notIncludes('@'), (pkg) => `${pkg}@latest`)
const moduleNotAvailable = (pkg) =>
!isModuleAvailable(pkg.charAt(0) === '@' ? pkg : pkg.split('@')[0])
module.exports = function checkMissing(
rules,
extraInstallPackage,
configs,
parsers
) {
const notInstalled = rules
.map((plugin) => `eslint-plugin-${plugin}`)
.filter((plugin) => moduleNotAvailable(plugin))
extraInstallPackage.forEach(([rule, plugin]) => {
if (rules.includes(rule) && moduleNotAvailable(plugin)) {
notInstalled.push(plugin)
}
})
configs
.map((config) =>
config.charAt(0) === '@' ? config : `eslint-config-${config}`
)
.filter((plugin) => moduleNotAvailable(plugin))
.forEach((config) => notInstalled.push(config))
parsers
.filter((plugin) => moduleNotAvailable(plugin))
.forEach((parser) => notInstalled.push(parser))
if (!hasAnyDep(ADJUCT)) notInstalled.push(ADJUCT)
if (notInstalled.length === 0) return
const s = notInstalled.length === 1 ? '' : 's'
// eslint-disable-next-line no-console
console.log(`
Oops! Something went wrong! :(
${CONFIG_NAME} could not find the following package${s}
${notInstalled.join('\n ')}
To install the missing package${s}, please run the following command:
npm install ${notInstalled.map((pkg) => atLatest(pkg)).join(' ')} --save-dev
`)
process.exit(1) // eslint-disable-line unicorn/no-process-exit
}