mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
Sustainable Kibana Architecture: Update tooling to take into account the new folders (#202327)
## Summary Otherwise we're going to be removing APIs of relocated modules.
This commit is contained in:
parent
d8f3f4cb3c
commit
397314c952
3 changed files with 39 additions and 3 deletions
|
@ -457,7 +457,11 @@ function getTsProject(repoPath: string, overridePath?: string) {
|
|||
if (!overridePath) {
|
||||
project.addSourceFilesAtPaths([`${repoPath}/x-pack/plugins/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/x-pack/packages/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/x-pack/platform/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/x-pack/solutions/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/src/plugins/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/src/platform/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/src/core/packages/**/*.ts`, '!**/*.d.ts']);
|
||||
project.addSourceFilesAtPaths([`${repoPath}/packages/**/*.ts`, '!**/*.d.ts']);
|
||||
} else {
|
||||
project.addSourceFilesAtPaths([`${overridePath}/**/*.ts`, '!**/*.d.ts']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue