release: WRNexusJS 0.2.26 -- fix bugs

This commit is contained in:
2026-07-14 12:09:11 +05:30
parent c2f327c09f
commit f32b26f15b
27 changed files with 279 additions and 296 deletions
+23 -24
View File
@@ -1,26 +1,25 @@
{
"name": "@wrnexus/cli",
"version": "0.2.26",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./workspace": "./src/workspace.ts"
},
"bin": {
"wrnexus": "src/index.ts"
},
"dependencies": {
"@wrnexus/core": "workspace:*",
"@wrnexus/router": "workspace:*",
"@wrnexus/csr": "workspace:*",
"@wrnexus/compiler": "workspace:*",
"@wrnexus/styles": "workspace:*",
"@wrnexus/dev-server": "workspace:*",
"@wrnexus/ui": "workspace:*",
"@wrnexus/validation": "workspace:*",
"@wrnexus/i18n": "workspace:*",
"@wrnexus/db": "workspace:*"
}
"name": "@wrnexus/cli",
"version": "0.2.26",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./workspace": "./src/workspace.ts"
},
"bin": {
"wrnexus": "src/index.ts"
},
"dependencies": {
"@wrnexus/core": "workspace:*",
"@wrnexus/router": "workspace:*",
"@wrnexus/csr": "workspace:*",
"@wrnexus/compiler": "workspace:*",
"@wrnexus/styles": "workspace:*",
"@wrnexus/dev-server": "workspace:*",
"@wrnexus/ui": "workspace:*",
"@wrnexus/validation": "workspace:*",
"@wrnexus/i18n": "workspace:*",
"@wrnexus/db": "workspace:*"
}
}
+9
View File
@@ -304,6 +304,15 @@ const MIGRATIONS: Migration[] = [
// Explicit no-op: updating @wrnexus/compiler and @wrnexus/csr is sufficient.
},
},
{
version: "0.2.26",
id: "class-improvements-attributes",
description:
"Adds conditional class directives, route state parameters, formatter improvements, and HMR fixes.",
apply() {
// No project file migration is required for this framework release.
},
},
];
/** Release tooling uses this to require an explicit migration entry per version. */