@neocompose/cli 0.3.0 → 0.4.0
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 +30 -0
- package/dist/neo.mjs +2290 -210
- package/dist/tooling/NeoCompose.Schema.Tooling.dll +0 -0
- package/dist/tooling/NeoCompose.Schema.Tooling.pdb +0 -0
- package/dist/tooling/NeoCompose.Schema.dll +0 -0
- package/dist/tooling/NeoCompose.Schema.pdb +0 -0
- package/dist/tooling/NeoCompose.Schema.xml +72 -0
- package/dist/tooling/NeoCompose.SchemaCompiler.deps.json +12 -12
- package/dist/tooling/NeoCompose.SchemaCompiler.dll +0 -0
- package/dist/tooling/NeoCompose.SchemaCompiler.pdb +0 -0
- package/dist/tooling/schema-contract.json +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.0] - 2026-07-17
|
|
4
|
+
|
|
5
|
+
### Breaking
|
|
6
|
+
|
|
7
|
+
- Replaced `NeoWorlds` and value-backed tile-grid asset lists with inherited
|
|
8
|
+
class-to-class `InternalRecordRelation` declarations.
|
|
9
|
+
- Replaced generated per-grid layer wrapper types with the authored tile and
|
|
10
|
+
object layer classes registered through `NeoRelations`.
|
|
11
|
+
- Removed legacy tile/object/layer lookup members from the format-3 project
|
|
12
|
+
contract; refresh working copies with Neo CLI 0.4.0.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Generated grid content now exposes the declared shared layer classes and
|
|
17
|
+
class-backed tile/object definitions directly.
|
|
18
|
+
|
|
19
|
+
## [0.3.1] - 2026-07-16
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- Added `neo history inspect`, `undo`, `revert`, and `flatten` workflows with
|
|
24
|
+
interactive project and version selection.
|
|
25
|
+
- Added deterministic `@current` and `@latest` version resolution for history
|
|
26
|
+
commands.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- Reduced project synchronization I/O with incremental export manifests and
|
|
31
|
+
bounded snapshot retrieval.
|
|
32
|
+
|
|
3
33
|
## [0.3.0] - 2026-07-15
|
|
4
34
|
|
|
5
35
|
### Breaking
|