@neocompose/cli 0.21.6 → 0.22.1
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/package.json
CHANGED
|
@@ -78,7 +78,7 @@ wrappers.
|
|
|
78
78
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
79
79
|
|
|
80
80
|
```html
|
|
81
|
-
<!-- reviewed-through-cli: 0.
|
|
81
|
+
<!-- reviewed-through-cli: 0.22.1 -->
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -22,6 +22,7 @@ neo diff
|
|
|
22
22
|
neo dialogue dryrun <dialogue-ref>
|
|
23
23
|
neo push --dry-run
|
|
24
24
|
neo push
|
|
25
|
+
neo push --dry-run --force-recompile
|
|
25
26
|
```
|
|
26
27
|
|
|
27
28
|
Use `neo pull --regenerate-source-names` to refresh readable naming while
|
|
@@ -37,6 +38,11 @@ validation — so a rejection that used to cost a real push and return an opaque
|
|
|
37
38
|
`preparation-failed` now reports before anything is sent. It does not prompt,
|
|
38
39
|
upload, commit, or rewrite source.
|
|
39
40
|
|
|
41
|
+
Normal preparation follows typed compiler dependencies and recompiles only
|
|
42
|
+
bodies affected by changed declarations. Use `--force-recompile` with either a
|
|
43
|
+
dry run or a real push only when diagnosing stale derived IR: it retains the
|
|
44
|
+
exhaustive project-wide body sweep and is intentionally slower.
|
|
45
|
+
|
|
40
46
|
Interactive pushes report the active preparation phase before workspace
|
|
41
47
|
discovery, lowering, compilation, source hashing, and validation begin.
|
|
42
48
|
A normal push prepares that transport once before confirmation and reuses it
|