@neocompose/cli 0.30.0 → 0.30.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.30.1] - 2026-08-13
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Preserve class values nested in list literals assigned by a NeoScript
|
|
8
|
+
call-site initializer block, with the web evaluator and Unity runtime pinned
|
|
9
|
+
to one structural parity fixture.
|
|
10
|
+
|
|
3
11
|
## [0.30.0] - 2026-08-13
|
|
4
12
|
|
|
5
13
|
### Added
|
package/dist/neo.mjs
CHANGED
|
@@ -104614,7 +104614,7 @@ var init_registry2 = __esm({
|
|
|
104614
104614
|
PROJECT_SCHEMA_CONTRACT = Object.freeze({
|
|
104615
104615
|
formatVersion: 3,
|
|
104616
104616
|
contractVersion: "3.11",
|
|
104617
|
-
cliVersion: "0.30.
|
|
104617
|
+
cliVersion: "0.30.1",
|
|
104618
104618
|
projectFileUploadBatchSize: 32,
|
|
104619
104619
|
documentRecords: {
|
|
104620
104620
|
member: {
|
|
@@ -111182,7 +111182,7 @@ There is no --keep-current: preserving current semantic state defines flatten.
|
|
|
111182
111182
|
async function main() {
|
|
111183
111183
|
const args = parseArgs(process.argv.slice(2));
|
|
111184
111184
|
if (args.command === "--version") {
|
|
111185
|
-
console.log("0.30.
|
|
111185
|
+
console.log("0.30.1");
|
|
111186
111186
|
return;
|
|
111187
111187
|
}
|
|
111188
111188
|
if (args.command === null || args.command === "help" || args.command === "--help" || args.command === "-h") {
|
package/package.json
CHANGED
|
@@ -83,7 +83,7 @@ wrappers.
|
|
|
83
83
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
84
84
|
|
|
85
85
|
```html
|
|
86
|
-
<!-- reviewed-through-cli: 0.30.
|
|
86
|
+
<!-- reviewed-through-cli: 0.30.1 -->
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
The quoted version above is checked too, so this instruction cannot go stale
|