mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
Fixes https://github.com/elastic/kibana/issues/149344 This PR migrates all plugins to packages automatically. It does this using `node scripts/lint_packages` to automatically migrate `kibana.json` files to `kibana.jsonc` files. By doing this automatically we can simplify many build and testing procedures to only support packages, and not both "packages" and "synthetic packages" (basically pointers to plugins). The majority of changes are in operations related code, so we'll be having operations review this before marking it ready for review. The vast majority of the code owners are simply pinged because we deleted all `kibana.json` files and replaced them with `kibana.jsonc` files, so we plan on leaving the PR ready-for-review for about 24 hours before merging (after feature freeze), assuming we don't have any blockers (especially from @elastic/kibana-core since there are a few core specific changes, though the majority were handled in #149370). --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import Path from 'path';
|
|
|
|
import { REPO_ROOT } from '@kbn/repo-info';
|
|
import { SetMap } from '@kbn/set-map';
|
|
import { RepoPath } from '@kbn/repo-path';
|
|
import { makeMatcher } from '@kbn/picomatcher';
|
|
import { TsProject } from '@kbn/ts-projects';
|
|
|
|
import { PackageFileMap } from './package_file_map';
|
|
|
|
export class TsProjectFileMap {
|
|
private readonly filesByTsProject = new SetMap<TsProject, RepoPath>();
|
|
|
|
constructor(pkgFileMap: PackageFileMap, tsProjects: TsProject[]) {
|
|
const isNotLocal = (p: string) => p.startsWith('..');
|
|
const isLocal = (p: string) => !isNotLocal(p);
|
|
const allFiles = pkgFileMap.getAllFiles();
|
|
|
|
for (const tsProject of tsProjects) {
|
|
const toRepoRel = (p: string) =>
|
|
Path.relative(REPO_ROOT, Path.resolve(tsProject.directory, p));
|
|
const toRepoRelExcl = (p: string) => `!${toRepoRel(p)}`;
|
|
|
|
const include = tsProject.config.include ?? [];
|
|
const exclude = tsProject.config.exclude ?? [];
|
|
const pkg = tsProject.pkg;
|
|
|
|
const localPatterns = pkg
|
|
? [...include.filter(isLocal).map(toRepoRel), ...exclude.filter(isLocal).map(toRepoRelExcl)]
|
|
: [];
|
|
|
|
const externalPatterns = pkg
|
|
? [
|
|
...include.filter(isNotLocal).map(toRepoRel),
|
|
...exclude.filter(isNotLocal).map(toRepoRelExcl),
|
|
]
|
|
: [...include.map(toRepoRel), ...exclude.map(toRepoRelExcl)];
|
|
|
|
const localMatch = pkg && localPatterns.length ? makeMatcher(localPatterns) : undefined;
|
|
const externalMatch = externalPatterns.length ? makeMatcher(externalPatterns) : undefined;
|
|
|
|
if (localMatch && pkg) {
|
|
const localFiles = pkgFileMap.getFiles(pkg) ?? [];
|
|
for (const local of localFiles) {
|
|
if (localMatch(local.repoRel)) {
|
|
this.filesByTsProject.add(tsProject, local);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (externalMatch) {
|
|
for (const external of allFiles) {
|
|
if (externalMatch(external.repoRel)) {
|
|
this.filesByTsProject.add(tsProject, external);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
getFiles(tsProject: TsProject): Iterable<RepoPath> {
|
|
return this.filesByTsProject.get(tsProject) || [];
|
|
}
|
|
}
|