TenantAtlas/apps/platform/.pnpm-store/v10/files/b0/dae08a2f76407bb00c236177c5e5e352d59232361c2c61d44d6c5ffa8722289413f04687d32920a2eadca10a7cbd944de28be05b0c5d7f59259063f138e890
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

67 lines
1.8 KiB
Plaintext

{
"name": "magic-string",
"version": "0.30.21",
"type": "commonjs",
"description": "Modify strings, generate sourcemaps",
"keywords": [
"string",
"string manipulation",
"sourcemap",
"templating",
"transpilation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/magic-string.git"
},
"license": "MIT",
"author": "Rich Harris",
"main": "./dist/magic-string.cjs.js",
"module": "./dist/magic-string.es.mjs",
"sideEffects": false,
"jsnext:main": "./dist/magic-string.es.mjs",
"types": "./dist/magic-string.cjs.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/magic-string.es.mjs",
"require": "./dist/magic-string.cjs.js"
}
},
"files": [
"dist/*",
"index.d.ts",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.38.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.2",
"benchmark": "^2.1.4",
"bumpp": "^10.3.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"publint": "^0.3.15",
"rollup": "^4.52.5",
"source-map-js": "^1.2.1",
"source-map-support": "^0.5.21",
"vitest": "^4.0.2"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.5"
},
"scripts": {
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --single-quote --print-width 100 --use-tabs --write .",
"lint": "eslint src test && publint",
"lint:fix": "eslint src test --fix",
"release": "bumpp -x \"pnpm run changelog\" --all",
"pretest": "pnpm run build",
"test": "vitest run",
"test:dev": "vitest",
"bench": "pnpm run build && node benchmark/index.mjs",
"watch": "rollup -cw"
}
}