forked from dollarshaveclub/es-check
-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.js
executable file
·234 lines (212 loc) · 6.96 KB
/
index.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/usr/bin/env node
'use strict'
const { program } = require('commander')
const acorn = require('acorn')
const glob = require('fast-glob')
const fs = require('fs')
const path = require('path')
const supportsColor = require('supports-color')
const winston = require('winston')
const pkg = require('./package.json')
/**
* es-check 🏆
* ----
* @description
* - define the EcmaScript version to check for against a glob of JavaScript files
* - match the EcmaScript version option against a glob of files
* to to test the EcmaScript version of each file
* - error failures
*/
program
.version(pkg.version)
.argument(
'[ecmaVersion]',
'ecmaVersion to check files against. Can be: es3, es4, es5, es6/es2015, es7/es2016, es8/es2017, es9/es2018, es10/es2019, es11/es2020, es12/es2021, es2022, es2023',
)
.argument('[files...]', 'a glob of files to to test the EcmaScript version against')
.option('--module', 'use ES modules')
.option('--allow-hash-bang', 'if the code starts with #! treat it as a comment')
.option('--files <files>', 'a glob of files to to test the EcmaScript version against (alias for [files...])')
.option('--not <files>', 'folder or file names to skip')
.option('--no-color', 'disable use of colors in output')
.option('-v, --verbose', 'verbose mode: will also output debug messages')
.option('--quiet', 'quiet mode: only displays warn and error messages')
.option(
'--silent',
'silent mode: does not output anything, giving no indication of success or failure other than the exit code',
)
.action((ecmaVersionArg, filesArg, options) => {
const logger = winston.createLogger()
logger.add(
new winston.transports.Console({
silent: options.silent,
level: options.verbose ? 'silly' : options.quiet ? 'warn' : 'info',
format: winston.format.combine(
...(supportsColor.stdout ? [winston.format.colorize()] : []),
winston.format.simple(),
),
}),
)
const configFilePath = path.resolve(process.cwd(), '.escheckrc')
if (filesArg && filesArg.length && options.files) {
logger.error('Cannot pass in both [files...] argument and --files flag at the same time!')
process.exit(1)
}
/**
* @note
* Check for a configuration file.
* - If one exists, default to those options
* - If no command line arguments are passed in
*/
const config = fs.existsSync(configFilePath) ? JSON.parse(fs.readFileSync(configFilePath)) : {}
const expectedEcmaVersion = ecmaVersionArg ? ecmaVersionArg : config.ecmaVersion
const files =
filesArg && filesArg.length ? filesArg : options.files ? options.files.split(',') : [].concat(config.files)
const esmodule = options.module ? options.module : config.module
const allowHashBang = options.allowHashBang ? options.allowHashBang : config.allowHashBang
const pathsToIgnore = options.not ? options.not.split(',') : [].concat(config.not || [])
if (!expectedEcmaVersion) {
logger.error(
'No ecmaScript version passed in or found in .escheckrc. Please set your ecmaScript version in the CLI or in .escheckrc',
)
process.exit(1)
}
if (!files || !files.length) {
logger.error('No files were passed in please pass in a list of files to es-check!')
process.exit(1)
}
/**
* @note define ecmaScript version
*/
let ecmaVersion
switch (expectedEcmaVersion) {
case 'es3':
ecmaVersion = '3'
break
case 'es4':
logger.error('ES4 is not supported.')
process.exit(1)
case 'es5':
ecmaVersion = '5'
break
case 'es6':
ecmaVersion = '6'
break
case 'es7':
ecmaVersion = '7'
break
case 'es8':
ecmaVersion = '8'
break
case 'es9':
ecmaVersion = '9'
break
case 'es10':
ecmaVersion = '10'
break
case 'es11':
ecmaVersion = '11'
break
case 'es12':
ecmaVersion = '12'
break
case 'es2015':
ecmaVersion = '6'
break
case 'es2016':
ecmaVersion = '7'
break
case 'es2017':
ecmaVersion = '8'
break
case 'es2018':
ecmaVersion = '9'
break
case 'es2019':
ecmaVersion = '10'
break
case 'es2020':
ecmaVersion = '2020'
break
case 'es2021':
ecmaVersion = '2021'
break
case 'es2022':
ecmaVersion = '2022'
break
case 'es2023':
ecmaVersion = '2023'
break
default:
logger.error('Invalid ecmaScript version, please pass a valid version, use --help for help')
process.exit(1)
}
const errArray = []
const globOpts = { nodir: true }
const acornOpts = { ecmaVersion: parseInt(ecmaVersion, 10), silent: true }
const expandedPathsToIgnore = pathsToIgnore.reduce((result, path) => {
if (path.includes('*')) {
return result.concat(glob.sync(path, globOpts))
} else {
return result.concat(path)
}
}, [])
const filterForIgnore = (globbedFiles) => {
if (expandedPathsToIgnore && expandedPathsToIgnore.length > 0) {
const filtered = globbedFiles.filter(
(filePath) => !expandedPathsToIgnore.some((ignoreValue) => filePath.includes(ignoreValue)),
)
return filtered
}
return globbedFiles
}
logger.debug(`ES-Check: Going to check files using version ${ecmaVersion}`)
if (esmodule) {
acornOpts.sourceType = 'module'
logger.debug('ES-Check: esmodule is set')
}
if (allowHashBang) {
acornOpts.allowHashBang = true
logger.debug('ES-Check: allowHashBang is set')
}
files.forEach((pattern) => {
const globbedFiles = glob.sync(pattern, globOpts)
if (globbedFiles.length === 0) {
logger.error(`ES-Check: Did not find any files to check for ${pattern}.`)
process.exit(1)
}
const filteredFiles = filterForIgnore(globbedFiles)
filteredFiles.forEach((file) => {
const code = fs.readFileSync(file, 'utf8')
logger.debug(`ES-Check: checking ${file}`)
try {
acorn.parse(code, acornOpts)
} catch (err) {
logger.debug(`ES-Check: failed to parse file: ${file} \n - error: ${err}`)
const errorObj = {
err,
stack: err.stack,
file,
}
errArray.push(errorObj)
}
})
})
if (errArray.length > 0) {
logger.error(`ES-Check: there were ${errArray.length} ES version matching errors.`)
errArray.forEach((o) => {
logger.info(`
ES-Check Error:
----
· erroring file: ${o.file}
· error: ${o.err}
· see the printed err.stack below for context
----\n
${o.stack}
`)
})
process.exit(1)
}
logger.info(`ES-Check: there were no ES version matching errors! 🎉`)
})
program.parse()