-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcheck.mjs
More file actions
377 lines (344 loc) · 9.85 KB
/
check.mjs
File metadata and controls
377 lines (344 loc) · 9.85 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/**
* @fileoverview Monorepo-aware check runner with flag-based configuration.
* Runs code quality checks: Oxlint and TypeScript type checking across packages.
*/
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { isQuiet } from '@socketsecurity/lib/argv/flags'
import { parseArgs } from '@socketsecurity/lib/argv/parse'
import { WIN32 } from '@socketsecurity/lib/constants/platform'
import { getChangedFiles, getStagedFiles } from '@socketsecurity/lib/git'
import { getDefaultLogger } from '@socketsecurity/lib/logger'
import { spawn } from '@socketsecurity/lib/spawn'
import { printFooter, printHeader } from '@socketsecurity/lib/stdio/header'
import {
getAffectedPackages,
getPackagesWithScript,
runAcrossPackages,
} from './utils/monorepo-helper.mjs'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const scriptsDir = __dirname
const logger = getDefaultLogger()
/**
* Get files to check and determine affected packages.
*/
async function getFilesToCheck(options) {
const { all, changed, staged } = options
// If --all, return all packages.
if (all) {
return {
mode: 'all',
packages: getPackagesWithScript('lint'),
reason: 'all flag specified',
}
}
// Get changed files.
let changedFiles = []
let mode = 'changed'
if (staged) {
mode = 'staged'
changedFiles = await getStagedFiles({ absolute: false })
if (!changedFiles.length) {
return { mode, packages: [], reason: 'no staged files' }
}
} else if (changed) {
mode = 'changed'
changedFiles = await getChangedFiles({ absolute: false })
if (!changedFiles.length) {
return { mode, packages: [], reason: 'no changed files' }
}
} else {
// Default to changed files if no specific flag.
mode = 'changed'
changedFiles = await getChangedFiles({ absolute: false })
if (!changedFiles.length) {
return { mode, packages: [], reason: 'no changed files' }
}
}
// Determine affected packages.
const affectedPackages = getAffectedPackages(changedFiles)
if (!affectedPackages.length) {
return { mode, packages: [], reason: 'no lintable packages affected' }
}
return { mode, packages: affectedPackages, reason: null }
}
/**
* Run Oxlint check via lint script on affected packages.
*/
async function runOxlintCheck(options = {}) {
const { quiet = false } = options
// Get files to check and affected packages.
const { packages } = await getFilesToCheck(options)
if (!packages.length) {
if (!quiet) {
logger.step('Running Oxlint checks')
logger.substep('No packages to check, skipping Oxlint')
}
return 0
}
// Run lint across affected packages.
return await runAcrossPackages(
packages,
'lint',
[],
quiet,
'Running Oxlint checks',
)
}
/**
* Run TypeScript type check across all packages with type script.
*/
async function runTypeCheck(options = {}) {
const { quiet = false } = options
const packages = getPackagesWithScript('type')
if (!packages.length) {
if (!quiet) {
logger.step('Running TypeScript checks')
logger.substep('No packages with type checking')
}
return 0
}
// Run type check across packages.
return await runAcrossPackages(
packages,
'type',
[],
quiet,
'Running TypeScript checks',
)
}
async function main() {
try {
// Parse arguments.
const { values } = parseArgs({
options: {
help: { type: 'boolean', default: false },
lint: { type: 'boolean', default: false },
types: { type: 'boolean', default: false },
all: { type: 'boolean', default: false },
staged: { type: 'boolean', default: false },
changed: { type: 'boolean', default: false },
quiet: { type: 'boolean', default: false },
silent: { type: 'boolean', default: false },
},
allowPositionals: false,
strict: false,
})
// Show help if requested.
if (values.help) {
logger.log('Monorepo Check Runner')
logger.log('\nUsage: pnpm check [options]')
logger.log('\nOptions:')
logger.log(' --help Show this help message')
logger.log(' --lint Run Oxlint check only')
logger.log(' --types Run TypeScript check only')
logger.log(' --all Check all packages')
logger.log(' --staged Check packages with staged files')
logger.log(' --changed Check packages with changed files')
logger.log(' --quiet, --silent Suppress progress messages')
logger.log('\nExamples:')
logger.log(
' pnpm check # Run all checks on changed packages',
)
logger.log(' pnpm check --all # Run all checks on all packages')
logger.log(' pnpm check --lint # Run Oxlint only')
logger.log(' pnpm check --types # Run TypeScript only')
logger.log(
' pnpm check --lint --staged # Run Oxlint on staged packages',
)
process.exitCode = 0
return
}
const quiet = isQuiet(values)
const runAll = !values.lint && !values.types
if (!quiet) {
printHeader('Monorepo Check Runner')
}
let exitCode = 0
// Run Oxlint check if requested or running all.
if (runAll || values.lint) {
if (!quiet) {
logger.log('')
}
exitCode = await runOxlintCheck({
all: values.all,
changed: values.changed,
quiet,
staged: values.staged,
})
if (exitCode !== 0) {
if (!quiet) {
logger.error('Checks failed')
}
process.exitCode = exitCode
return
}
}
// Run TypeScript check if requested or running all.
if (runAll || values.types) {
if (!quiet) {
logger.log('')
}
exitCode = await runTypeCheck({ quiet })
if (exitCode !== 0) {
if (!quiet) {
logger.error('Checks failed')
}
process.exitCode = exitCode
return
}
}
// Run link: validation check.
if (runAll) {
if (!quiet) {
logger.log('')
logger.progress('Validating no link: dependencies')
}
const validateResult = await spawn(
'node',
[path.join(scriptsDir, 'validate-no-link-deps.mjs')],
{
shell: WIN32,
stdio: 'pipe',
stdioString: true,
},
)
if (validateResult.code !== 0) {
if (!quiet) {
logger.clearLine()
logger.error('Validation failed')
}
// Show the actual error output.
if (validateResult.stdout) {
logger.log(validateResult.stdout)
}
if (validateResult.stderr) {
logger.error(validateResult.stderr)
}
process.exitCode = validateResult.code
return
}
if (!quiet) {
logger.clearLine()
logger.success('No link: dependencies found')
}
}
// Run bundle dependencies validation check.
if (runAll) {
if (!quiet) {
logger.log('')
logger.progress('Validating bundle dependencies')
}
const bundleResult = await spawn(
'node',
[path.join(scriptsDir, 'validate-bundle-deps.mjs')],
{
shell: WIN32,
stdio: 'pipe',
stdioString: true,
},
)
if (bundleResult.code !== 0) {
if (!quiet) {
logger.clearLine()
logger.error('Bundle validation failed')
}
// Show the actual error output.
if (bundleResult.stdout) {
logger.log(bundleResult.stdout)
}
if (bundleResult.stderr) {
logger.error(bundleResult.stderr)
}
process.exitCode = bundleResult.code
return
}
if (!quiet) {
logger.clearLine()
logger.success('Bundle dependencies validation passed')
}
}
// Run CDN references validation check.
if (runAll) {
if (!quiet) {
logger.log('')
logger.progress('Validating no CDN references')
}
const cdnResult = await spawn(
'node',
[path.join(scriptsDir, 'validate-no-cdn-refs.mjs')],
{
shell: WIN32,
stdio: 'pipe',
stdioString: true,
},
)
if (cdnResult.code !== 0) {
if (!quiet) {
logger.clearLine()
logger.error('CDN references validation failed')
}
// Show the actual error output.
if (cdnResult.stdout) {
logger.log(cdnResult.stdout)
}
if (cdnResult.stderr) {
logger.error(cdnResult.stderr)
}
process.exitCode = cdnResult.code
return
}
if (!quiet) {
logger.clearLine()
logger.success('No CDN references found')
}
}
// Run file size validation check.
if (runAll) {
if (!quiet) {
logger.log('')
logger.progress('Validating file sizes')
}
const sizeResult = await spawn(
'node',
[path.join(scriptsDir, 'validate-file-size.mjs')],
{
shell: WIN32,
stdio: 'pipe',
stdioString: true,
},
)
if (sizeResult.code !== 0) {
if (!quiet) {
logger.clearLine()
logger.error('File size validation failed')
}
// Show the actual error output.
if (sizeResult.stdout) {
logger.log(sizeResult.stdout)
}
if (sizeResult.stderr) {
logger.error(sizeResult.stderr)
}
process.exitCode = sizeResult.code
return
}
if (!quiet) {
logger.clearLine()
logger.success('All files are within size limits')
}
}
if (!quiet) {
logger.log('')
logger.success('All checks passed')
printFooter()
}
} catch (error) {
logger.error(`Check runner failed: ${error.message}`)
process.exitCode = 1
}
}
main().catch(e => {
logger.error(e)
process.exitCode = 1
})