@softize/opus 9.0.2 → 9.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/registry/git/pre-push.d/opus +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,12 @@ Depois de qualquer bump, rode os gates (`typecheck` · `test` · `opus check` ·
|
|
|
11
11
|
> tinha ficado sem registro nenhum, o que é exatamente o caso que este arquivo existe
|
|
12
12
|
> pra cobrir.
|
|
13
13
|
|
|
14
|
+
## 9.0.3 — 2026-08-12
|
|
15
|
+
|
|
16
|
+
**O pre-push ignora worktrees internos do Maestro.** Projetos sob `.maestro/` pertencem
|
|
17
|
+
à sessão que os criou e serão validados no próprio ciclo de commit; eles não entram na
|
|
18
|
+
descoberta de apps do checkout hospedeiro.
|
|
19
|
+
|
|
14
20
|
## 9.0.2 — 2026-08-12
|
|
15
21
|
|
|
16
22
|
**O pre-push entende monorepos.** Ele valida a materialização na raiz e executa as
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ node "$opus_cli" pre-push materialization || exit $?
|
|
|
16
16
|
|
|
17
17
|
# A raiz de um monorepo não precisa ser um app. Cada marcador per-app define um alvo
|
|
18
18
|
# real do check; node_modules e .git nunca participam da descoberta.
|
|
19
|
-
find . -name opus.json -type f -not -path '*/node_modules/*' -not -path '*/.git/*' -exec dirname {} \; |
|
|
19
|
+
find . -name opus.json -type f -not -path '*/node_modules/*' -not -path '*/.git/*' -not -path '*/.maestro/*' -exec dirname {} \; |
|
|
20
20
|
sort -u |
|
|
21
21
|
while IFS= read -r app_dir; do
|
|
22
22
|
node "$opus_cli" check "$app_dir" || exit $?
|