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 +2 -2
- package/package.json +1 -1
- package/packages/orm/src/adapters/firebird.ts +5 -1
- package/packages/orm/src/adapters/mongodb.ts +5 -2
- package/packages/orm/src/adapters/mssql.ts +5 -1
- package/packages/orm/src/adapters/mysql.ts +5 -1
- package/packages/orm/src/adapters/odbc.ts +5 -1
- package/packages/orm/src/adapters/postgres.ts +5 -1
package/CLAUDE.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# CLAUDE.md — AI Developer Guide for tina4-nodejs (v3.13.
|
|
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.
|
|
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
|
@@ -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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
}
|