Files
WRNexusJS/packages/db/package.json
T
ClintchizandClaude Opus 5 96e082b943 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>
2026-08-22 12:09:38 +05:30

32 lines
828 B
JSON

{
"name": "@wrnexus/db",
"version": "0.8.17",
"private": true,
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./connect": "./src/connect.ts",
"./session": "./src/session-store.ts",
"./sqlite": "./src/adapters/sqlite.ts",
"./postgres": "./src/adapters/postgres.ts",
"./mysql": "./src/adapters/mysql.ts",
"./mongo": "./src/adapters/mongo.ts"
},
"description": "Typed database drivers, migrations, instrumentation, repositories, pagination, and transaction helpers.",
"types": "./src/index.ts",
"files": [
"src",
"README.md"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run test"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
}
}