ci: Monitor client bundle size (#16327)

This commit is contained in:
Iván Ovejero
2025-06-17 10:43:17 +02:00
committed by GitHub
parent 04bdd01a42
commit 9805bd3a6d
4 changed files with 168 additions and 6 deletions

30
.bundlemonrc.json Normal file
View File

@@ -0,0 +1,30 @@
{
"baseDir": "packages/frontend/editor-ui/dist",
"defaultCompression": "gzip",
"reportOutput": [
[
"github",
{
"checkRun": true,
"commitStatus": "off",
"prComment": true
}
]
],
"files": [
{
"path": "*.wasm",
"friendlyName": "WASM Dependencies"
}
],
"groups": [
{
"groupName": "Editor UI - Total JS Size",
"path": "**/*.js"
},
{
"groupName": "Editor UI - Total CSS Size",
"path": "**/*.css"
}
]
}