@neocompose/cli 0.26.1 → 0.26.2
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 +13 -0
- package/README.md +12 -4
- package/dist/neo.mjs +1118 -198
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +1 -1
- package/skills/neocompose-cli/references/cli-development.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.26.2] - 2026-08-10
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Make repeated `neo test` runs reuse an experimental, checksummed prepared
|
|
8
|
+
project keyed by production source, managed files, configuration, workspace
|
|
9
|
+
state, CLI version, and compiler revision. Test-only edits retain the shared
|
|
10
|
+
project startup; stale or corrupt entries rebuild automatically.
|
|
11
|
+
- Share immutable evaluator indexes and use sparse copy-on-write fixture
|
|
12
|
+
snapshots across registration, suites, and tests. Human and JSON reports now
|
|
13
|
+
report total, test-code, and framework-startup durations separately and
|
|
14
|
+
print shared startup as its own result row.
|
|
15
|
+
|
|
3
16
|
## [0.26.1] - 2026-08-10
|
|
4
17
|
|
|
5
18
|
### Fixed
|
package/README.md
CHANGED
|
@@ -378,10 +378,18 @@ neo test -t "TakeDamage"
|
|
|
378
378
|
neo test --reporter=json --outputFile=.neo/test-results.json
|
|
379
379
|
```
|
|
380
380
|
|
|
381
|
-
The JSON output file is written atomically.
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
381
|
+
The JSON output file is written atomically. Human and JSON reports break timing
|
|
382
|
+
into total, test-code, and framework-startup durations; human output also gives
|
|
383
|
+
shared startup its own row instead of charging it to the first test.
|
|
384
|
+
|
|
385
|
+
Test compilation metadata and the experimental verified prepared-project cache
|
|
386
|
+
live in `.neo/test-build/`; neither they nor test files are server records.
|
|
387
|
+
Production source, managed files, configuration, workspace state, CLI version,
|
|
388
|
+
and compiler revision invalidate the prepared project, while editing only a
|
|
389
|
+
`.spec.neo` file reuses it. Missing, corrupt, or checksum-mismatched cache
|
|
390
|
+
entries are rebuilt. A workspace must have been initialized or pulled once so
|
|
391
|
+
`.neo/state.json` contains the offline project facts, but running tests
|
|
392
|
+
performs no login or network request.
|
|
385
393
|
|
|
386
394
|
Native functions cannot execute in the local evaluator and therefore fail
|
|
387
395
|
closed unless mocked. Use `mock.native(Member)`, `mock.function(Member)`, or
|