Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 10x 10x 10x 10x 10x 10x 56x 56x 56x 56x 56x 56x 1x 55x 55x 1x 54x 54x 54x 54x 37x 37x 1x 36x 18x 18x 10x 10x 10x 93x 93x 37x 56x 7x 2x 2x 2x 1x 1x 1x 1x | import { type ExecutorContext, getProjects, logger, type ProjectConfiguration, updateProjectConfiguration } from '@nx/devkit'; import { flushChanges, FsTree } from 'nx/src/generators/tree'; import type { IExecutorOptions } from './schema'; export interface IProjectMetadata { name: string; config: ProjectConfiguration; } /** * TSC check executor configurator. */ export class AppConfigureTscCheckExecutor { public options: IExecutorOptions = { tsConfig: '', }; public context: ExecutorContext = { cwd: process.cwd(), isVerbose: false, root: '/root', projectsConfigurations: { version: 2, projects: {}, }, nxJsonConfiguration: {}, projectGraph: { nodes: {}, dependencies: {}, }, }; public tree: FsTree = new FsTree(this.context.root, false); constructor(options: IExecutorOptions, context: ExecutorContext) { this.options = { ...options }; this.context = { ...context }; this.tree = new FsTree(this.context.root, false); } private mapSuffix(project: IProjectMetadata) { const suffix = project.config.projectType === 'application' && project.name.includes('-e2e') ? 'e2e' : project.config.projectType === 'application' && project.name === 'tools' ? 'tools' : project.config.projectType === 'library' ? 'lib' : project.config.projectType === 'application' ? 'app' : ''; return suffix; } private addExecutorConfiguration(tree: FsTree, project: IProjectMetadata) { const src = project.config.sourceRoot; Iif (typeof src === 'undefined') { throw new Error(`The project ${project.name} does not have the 'sourceRoot' configuration option defined.`); } const suffix = this.mapSuffix(project); if (suffix === '') { throw new Error(`Could not determine a suffix for the project: ${project.name}.`); } const config = { ...project.config }; if (typeof config.targets === 'undefined') { throw new Error(`The project ${project.name} does not have the 'targets' configuration option defined.`); } Eif (typeof config.targets['tsc-check'] === 'undefined' && (/\/src$/.test(src) || src === 'tools')) { const fullSuffix = suffix === 'e2e' ? '' : `${suffix}.`; config.targets['tsc-check'] = { executor: './tools/executors/tsc:check', options: { tsConfig: `{projectRoot}/tsconfig.${fullSuffix}json`, }, }; updateProjectConfiguration(tree, project.name, config); } } private removeExecutorConfiguration(tree: FsTree, project: IProjectMetadata) { const config = { ...project.config }; if (typeof config.targets === 'undefined') { throw new Error(`The project ${project.name} does not have the 'targets' configuration option defined.`); } if (typeof config.targets['tsc-check'] !== 'undefined') { delete config.targets['tsc-check']; updateProjectConfiguration(tree, project.name, config); } } public configure() { const projects = getProjects(this.tree); const entries = [...projects.entries()]; for (let i = 0, max = entries.length; i < max; i += 1) { const project = { name: entries[i][0], config: entries[i][1], }; if (this.options.cleanup === true) { this.removeExecutorConfiguration(this.tree, project); } else { this.addExecutorConfiguration(this.tree, project); } } if (this.options.dryRun !== true) { const changes = this.tree.listChanges(); flushChanges(this.context.root, changes); if (this.options.cleanup === true) { logger.warn(`Don't forget to remove the executor configuration target from './tools/project.json'. Find a target 'tsc-configure'.`); } } } } /** * Configure TSC executor. * @param options executor options * @param context executor context * @returns execution result */ export default async function configure(options: IExecutorOptions, context: ExecutorContext): Promise<{ success: boolean }> { const executor = new AppConfigureTscCheckExecutor(options, context); executor.configure(); return { success: true }; } |