chore: publish 25ef5af

Built from main 25ef5af63e
fix: refuse to publish a build that logged a vite error
This commit is contained in:
Marcos Paulo
2026-09-06 09:22:05 +00:00
parent 37a1e480c6
commit 47f4de8757
96 changed files with 1616 additions and 3563 deletions
@@ -1,19 +0,0 @@
---
name: angular-access-modifiers
description: Apply explicit TypeScript access modifiers to Angular component, directive, and pipe members. Use when editing or reviewing Angular class APIs in a repository that adopts this convention.
---
# angular-access-modifiers
## Workflow
1. Inspect the components template and callers before changing visibility.
2. Use `protected` for template-facing members when the project supports it, `private` for implementation details, and `public` for intentional external APIs and lifecycle hooks.
3. Keep existing framework-required visibility when a compiler or decorator requires it.
4. Run the project typecheck and relevant template tests.
## Rules
- Do not change visibility only to satisfy a test; fix the test boundary or document the API.
- Prefer the repositorys established Angular convention if it differs.
## Output
List changed members, their consumers, and verification results.