tina4-nodejs 3.13.5 → 3.13.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CLAUDE.md CHANGED
@@ -1,10 +1,10 @@
1
- # CLAUDE.md — AI Developer Guide for tina4-nodejs (v3.13.5)
1
+ # CLAUDE.md — AI Developer Guide for tina4-nodejs (v3.13.6)
2
2
 
3
3
  > This file helps AI assistants (Claude, Copilot, Cursor, etc.) understand and work on this codebase effectively.
4
4
 
5
5
  ## What This Project Is
6
6
 
7
- Tina4 for Node.js/TypeScript v3.13.5 — The Intelligent Native Application 4ramework. A convention-over-configuration structural paradigm. The developer writes TypeScript; Tina4 is invisible infrastructure.
7
+ Tina4 for Node.js/TypeScript v3.13.6 — The Intelligent Native Application 4ramework. A convention-over-configuration structural paradigm. The developer writes TypeScript; Tina4 is invisible infrastructure.
8
8
 
9
9
  The philosophy: zero ceremony, batteries included, file system as source of truth.
10
10
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- "version": "3.13.5",
6
+ "version": "3.13.6",
7
7
 
8
8
  "type": "module",
9
9
  "description": "Tina4 for Node.js/TypeScript \u2014 54 built-in features, zero dependencies",
@@ -18,7 +18,11 @@ function requireFirebird(): any {
18
18
  return firebird;
19
19
  } catch {
20
20
  throw new Error(
21
- 'Firebird adapter requires the "node-firebird" package. Install it with: npm install node-firebird',
21
+ 'Firebird adapter requires the "node-firebird" package. Install one of:\n' +
22
+ " npm install node-firebird\n" +
23
+ " yarn add node-firebird\n" +
24
+ " pnpm add node-firebird\n" +
25
+ " bun add node-firebird",
22
26
  );
23
27
  }
24
28
  }
@@ -301,8 +301,11 @@ export class MongodbAdapter implements DatabaseAdapter {
301
301
  MongoClient = (await import("mongodb")).MongoClient;
302
302
  } catch {
303
303
  throw new Error(
304
- "The 'mongodb' package is required for MongoDB connections. " +
305
- "Install: npm install mongodb",
304
+ "The 'mongodb' package is required for MongoDB connections. Install one of:\n" +
305
+ " npm install mongodb\n" +
306
+ " yarn add mongodb\n" +
307
+ " pnpm add mongodb\n" +
308
+ " bun add mongodb",
306
309
  );
307
310
  }
308
311
 
@@ -18,7 +18,11 @@ function requireTedious(): any {
18
18
  return tedious;
19
19
  } catch {
20
20
  throw new Error(
21
- 'MSSQL adapter requires the "tedious" package. Install it with: npm install tedious',
21
+ 'MSSQL adapter requires the "tedious" package. Install one of:\n' +
22
+ " npm install tedious\n" +
23
+ " yarn add tedious\n" +
24
+ " pnpm add tedious\n" +
25
+ " bun add tedious",
22
26
  );
23
27
  }
24
28
  }
@@ -18,7 +18,11 @@ function requireMysql2(): any {
18
18
  return mysql2;
19
19
  } catch {
20
20
  throw new Error(
21
- 'MySQL adapter requires the "mysql2" package. Install it with: npm install mysql2',
21
+ 'MySQL adapter requires the "mysql2" package. Install one of:\n' +
22
+ " npm install mysql2\n" +
23
+ " yarn add mysql2\n" +
24
+ " pnpm add mysql2\n" +
25
+ " bun add mysql2",
22
26
  );
23
27
  }
24
28
  }
@@ -21,7 +21,11 @@ function requireOdbc(): any {
21
21
  return odbcModule;
22
22
  } catch {
23
23
  throw new Error(
24
- "The 'odbc' package is required for ODBC connections. Install it with: npm install odbc",
24
+ "The 'odbc' package is required for ODBC connections. Install one of:\n" +
25
+ " npm install odbc\n" +
26
+ " yarn add odbc\n" +
27
+ " pnpm add odbc\n" +
28
+ " bun add odbc",
25
29
  );
26
30
  }
27
31
  }
@@ -19,7 +19,11 @@ function requirePg(): typeof import("pg") {
19
19
  return pg!;
20
20
  } catch {
21
21
  throw new Error(
22
- 'PostgreSQL adapter requires the "pg" package. Install it with: npm install pg',
22
+ 'PostgreSQL adapter requires the "pg" package. Install one of:\n' +
23
+ " npm install pg\n" +
24
+ " yarn add pg\n" +
25
+ " pnpm add pg\n" +
26
+ " bun add pg",
23
27
  );
24
28
  }
25
29
  }