Skip to content

Commit

Permalink
Removes circular deps for lists in tooling and bumps down byte limit …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
FrankHassanabad authored May 13, 2021
1 parent 7dd29a5 commit 3da9a78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-optimizer/limits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pageLoadAssetSize:
lens: 96624
licenseManagement: 41817
licensing: 29004
lists: 280504
lists: 200000
logstash: 53548
management: 46112
maps: 80000
Expand Down
4 changes: 1 addition & 3 deletions src/dev/run_find_plugins_with_circular_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 3da9a78

Please sign in to comment.