TenantAtlas/apps/platform/.pnpm-store/v10/files/69/cf7257234ef8953d83bc498cf04cc5d04a98f3e423922570a5faa7996d5672e59f8cc116580c83cc48cf39ecfbb2ed152385f8b60481268ce8c7a8e71c7ca3-exec
ahmido 1fec9c6f9d
Some checks failed
Main Confidence / confidence (push) Failing after 45s
feat: compress governance operator outcomes (#253)
## Summary
- introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries
- apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces
- expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests

## Validation
- `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent`
- focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions)
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions)

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #253
2026-04-19 12:30:36 +00:00

60 lines
1.4 KiB
Plaintext
Executable File

{
"name": "@drizzle-team/brocli",
"type": "module",
"author": "Drizzle Team",
"version": "0.10.2",
"description": "Modern type-safe way of building CLIs",
"license": "Apache-2.0",
"sideEffects": false,
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/drizzle-team/brocli.git"
},
"homepage": "https://github.com/drizzle-team/brocli",
"scripts": {
"build": "pnpm tsx scripts/build.ts",
"b": "pnpm build",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "vitest run && npx tsc --noEmit",
"mtest": "npx tsx tests/manual.ts",
"lint": "dprint check --list-different"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/clone": "^2.1.4",
"@types/node": "^20.12.13",
"@types/shell-quote": "^1.7.5",
"clone": "^2.1.2",
"dprint": "^0.46.2",
"shell-quote": "^1.8.1",
"tsup": "^8.1.0",
"tsx": "^4.7.0",
"typescript": "latest",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"zx": "^8.1.2"
},
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./index.d.cjs",
"default": "./index.cjs"
},
"types": "./index.d.ts",
"default": "./index.js"
}
}
}