release: WRNexusJS 0.6.0

This commit is contained in:
2026-08-01 01:09:58 +05:30
parent 3e565e8d03
commit 687d345882
502 changed files with 33038 additions and 11358 deletions
+18
View File
@@ -0,0 +1,18 @@
# WRNexusJS 0.6.0 syntax package root export fix
The v0.6 parser helpers are implementation details of `@wrnexus/syntax`, not a separate public versioned package surface.
## Canonical usage
```ts
import {
parseRuntimeFunctions,
parseStateDeclarations,
parseOutputs,
stripRuntimeFunctionModifiers,
} from "@wrnexus/syntax";
```
The compiler now imports `stripRuntimeFunctionModifiers` from `@wrnexus/syntax`. The `./v060` package export and the VS Code standalone-bundle alias were removed. `packages/syntax/src/v060.ts` remains an internal source module and its public APIs are re-exported by `packages/syntax/src/index.ts`.
This keeps application and framework imports stable across future releases and avoids exposing version numbers in package import paths.