Removes circular deps for lists in tooling and bumps down byte limit for lists (#100082)

## Summary

* Removes circular deps exception for lists
* Bumps down byte limit for lists now that we have decreased the page bytes to be under 200kb
This commit is contained in:
Frank Hassanabad 2021-05-13 16:37:28 -06:00 committed by GitHub
parent 7dd29a56ad
commit 3da9a78eeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -46,7 +46,7 @@ pageLoadAssetSize:
lens: 96624
licenseManagement: 41817
licensing: 29004
lists: 280504
lists: 200000
logstash: 53548
management: 46112
maps: 80000

View file

@ -19,9 +19,7 @@ interface Options {
type CircularDepList = Set<string>;
const allowedList: CircularDepList = new Set([
'x-pack/plugins/lists -> x-pack/plugins/security_solution',
]);
const allowedList: CircularDepList = new Set([]);
run(
async ({ flags, log }) => {