{
"id": "install/bun-install",
"family": "dependency-install",
"description": "Compact bun install output while preserving warnings and package counts.",
"matchOutput": [
{
"pattern": "Checked \\d+ installs? across \\d+ packages? \\(no changes\\)",
"message": "bun install: up to date",
"flags": "i"
}
],
"match": {
"toolNames": ["exec"],
"argv0": ["bun"],
"argvIncludes": [["install"]]
},
"transforms": {
"stripAnsi": true,
"dedupeAdjacent": true,
"trimEmptyEdges": true
},
"summarize": {
"head": 10,
"tail": 8
},
"failure": {
"preserveOnFailure": true,
"head": 14,
"tail": 14
},
"counters": [
{
"name": "warning",
"pattern": "warning",
"flags": "i"
},
{
"name": "package",
"pattern": "\\bpackage(s)?\\b",
"flags": "i"
}
]
}