release: patch syntax, compiler, db, csr
Six fixes, all found by driving a real application rather than by the suite: - syntax: a quote or brace inside a regex literal unbalanced the brace scanner - syntax: block comments between members failed to parse, while the same comment inside a braced body was fine - compiler: pages never emitted `data-wrn-loop-locals`, so a loop variable in a handler threw ReferenceError at click time with a green build - csr: client-rendered `data-for` items never carried the marker either, so a component's output binding silently dropped every call while a plain DOM handler in the same position worked - db: the query generator baked the checkout's line endings into generated SQL literals, so every build dirtied the working tree Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@wrnexus/compiler",
|
||||
"version": "0.8.16",
|
||||
"version": "0.8.17",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@wrnexus/csr",
|
||||
"version": "0.8.27",
|
||||
"version": "0.8.28",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@wrnexus/db",
|
||||
"version": "0.8.16",
|
||||
"version": "0.8.17",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@wrnexus/syntax",
|
||||
"version": "0.8.11",
|
||||
"version": "0.8.12",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
||||
Reference in New Issue
Block a user