-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.ts
More file actions
112 lines (97 loc) · 3.11 KB
/
Copy pathindex.ts
File metadata and controls
112 lines (97 loc) · 3.11 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
import { writeFile } from 'node:fs/promises';
import path from 'node:path';
import type {
Audit,
AuditOutput,
PluginArtifactOptions,
RunnerConfig,
RunnerFilesPaths,
} from '@code-pushup/models';
import { pluginArtifactOptionsSchema } from '@code-pushup/models';
import {
asyncSequential,
createRunnerFiles,
ensureDirectoryExists,
filePathToCliArg,
objectToCliArgs,
readJsonFile,
ui,
} from '@code-pushup/utils';
import type { ESLintPluginRunnerConfig, ESLintTarget } from '../config.js';
import { lint } from './lint.js';
import { lintResultsToAudits, mergeLinterOutputs } from './transform.js';
export async function executeRunner({
runnerConfigPath,
runnerOutputPath,
}: RunnerFilesPaths): Promise<void> {
const { slugs, targets } =
await readJsonFile<ESLintPluginRunnerConfig>(runnerConfigPath);
ui().logger.log(`ESLint plugin executing ${targets.length} lint targets`);
const linterOutputs = await asyncSequential(targets, lint);
const lintResults = mergeLinterOutputs(linterOutputs);
const failedAudits = lintResultsToAudits(lintResults);
const audits = slugs.map(
(slug): AuditOutput =>
failedAudits.find(audit => audit.slug === slug) ?? {
slug,
score: 1,
value: 0,
displayValue: 'passed',
details: { issues: [] },
},
);
await ensureDirectoryExists(path.dirname(runnerOutputPath));
await writeFile(runnerOutputPath, JSON.stringify(audits));
}
export async function createRunnerConfig(
scriptPath: string,
audits: Audit[],
targets: ESLintTarget[],
artifactOptions?: PluginArtifactOptions,
): Promise<RunnerConfig> {
const parsedOptions = artifactOptions
? pluginArtifactOptionsSchema.parse(artifactOptions)
: undefined;
const config: ESLintPluginRunnerConfig = {
targets,
slugs: audits.map(a => a.slug),
};
const { runnerConfigPath, runnerOutputPath } = parsedOptions
? await createCustomRunnerPaths(parsedOptions, config)
: await createRunnerFiles('eslint', JSON.stringify(config));
const args = [
filePathToCliArg(scriptPath),
...objectToCliArgs({ runnerConfigPath, runnerOutputPath }),
...resolveCommandArgs(parsedOptions?.generateArtifactsCommand),
];
return {
command: 'node',
args,
configFile: runnerConfigPath,
outputFile: runnerOutputPath,
};
}
async function createCustomRunnerPaths(
options: PluginArtifactOptions,
config: ESLintPluginRunnerConfig,
): Promise<RunnerFilesPaths> {
const artifactPaths = Array.isArray(options.artifactsPaths)
? options.artifactsPaths
: [options.artifactsPaths];
const runnerOutputPath = artifactPaths[0] ?? '';
const runnerConfigPath = path.join(
path.dirname(runnerOutputPath),
'plugin-config.json',
);
await ensureDirectoryExists(path.dirname(runnerConfigPath));
await writeFile(runnerConfigPath, JSON.stringify(config));
return { runnerConfigPath, runnerOutputPath };
}
function resolveCommandArgs(
command?: string | { command: string; args?: string[] },
): string[] {
if (!command) return [];
return typeof command === 'string'
? [command]
: [command.command, ...(command.args ?? [])];
}