33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
# Local validation required for WRNexusJS 0.6.0
|
|
|
|
Issues 1 through 7 from the specification validation report have been corrected and focused-tested. The remaining release gate is the complete Bun suite on your development machine.
|
|
|
|
## Run the complete framework suite
|
|
|
|
```powershell
|
|
bun install
|
|
bun run validate:0.6
|
|
bun run check
|
|
```
|
|
|
|
## Regenerate and validate UI documentation/showcase
|
|
|
|
```powershell
|
|
bun run scripts/generate-ui-component-reference.mjs
|
|
bun run --cwd examples/component-showcase generate
|
|
bun run --cwd examples/component-showcase test
|
|
bun run --cwd examples/component-showcase build
|
|
```
|
|
|
|
## Test migration and compatibility using a real project copy
|
|
|
|
```powershell
|
|
wrnexus update --dry-run --report
|
|
wrnexus update
|
|
bun run check
|
|
```
|
|
|
|
Confirm that a second migration run makes no changes. Test one new project and at least one existing deployed application before publishing.
|
|
|
|
Do not publish the final npm or VS Code release until these commands pass and the upgraded application behaves correctly in SSR, CSR navigation, HMR, RPC, stores, outputs, imports, and component interactions.
|