@batijs/cli 0.0.542 → 0.0.543

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.
Files changed (112) hide show
  1. package/dist/boilerplates/@batijs/auth0/files/$.env.js +1 -1
  2. package/dist/boilerplates/@batijs/auth0/files/$TODO.md.js +1 -1
  3. package/dist/boilerplates/@batijs/auth0/files/$wrangler.jsonc.js +1 -1
  4. package/dist/boilerplates/@batijs/authjs/files/$package.json.js +1 -1
  5. package/dist/boilerplates/@batijs/aws/files/$README.md.js +1 -1
  6. package/dist/boilerplates/@batijs/aws/files/$TODO.md.js +1 -1
  7. package/dist/boilerplates/@batijs/aws/files/$package.json.js +1 -1
  8. package/dist/boilerplates/@batijs/aws/files/$tsconfig.json.js +1 -1
  9. package/dist/boilerplates/@batijs/aws/files/cdk/bin/infrastructure.ts +1 -1
  10. package/dist/boilerplates/@batijs/biome/files/$package.json.js +1 -1
  11. package/dist/boilerplates/@batijs/cloudflare/files/$TODO.md.js +1 -1
  12. package/dist/boilerplates/@batijs/cloudflare/files/$package.json.js +1 -1
  13. package/dist/boilerplates/@batijs/cloudflare/files/$tsconfig.json.js +1 -1
  14. package/dist/boilerplates/@batijs/compiled/files/$package.json.js +1 -1
  15. package/dist/boilerplates/@batijs/compiled/files/$vite.config.ts.js +1 -1
  16. package/dist/boilerplates/@batijs/d1/files/$TODO.md.js +1 -1
  17. package/dist/boilerplates/@batijs/d1/files/$package.json.js +1 -1
  18. package/dist/boilerplates/@batijs/d1/files/$wrangler.jsonc.js +1 -1
  19. package/dist/boilerplates/@batijs/d1-kysely/bati.config.js +17 -0
  20. package/dist/boilerplates/@batijs/d1-kysely/files/$package.json.js +77 -0
  21. package/dist/boilerplates/@batijs/d1-kysely/files/database/migrations/todos.sql +4 -0
  22. package/dist/boilerplates/@batijs/d1-sqlite/files/$package.json.js +1 -1
  23. package/dist/boilerplates/@batijs/drizzle/files/$.env.js +1 -1
  24. package/dist/boilerplates/@batijs/drizzle/files/$TODO.md.js +1 -1
  25. package/dist/boilerplates/@batijs/drizzle/files/$package.json.js +1 -1
  26. package/dist/boilerplates/@batijs/eslint/files/$package.json.js +1 -1
  27. package/dist/boilerplates/@batijs/express/files/$package.json.js +1 -1
  28. package/dist/boilerplates/@batijs/fastify/files/$package.json.js +1 -1
  29. package/dist/boilerplates/@batijs/google-analytics/files/$.env.js +1 -1
  30. package/dist/boilerplates/@batijs/h3/files/$package.json.js +1 -1
  31. package/dist/boilerplates/@batijs/hono/files/$package.json.js +1 -1
  32. package/dist/boilerplates/@batijs/kysely/bati.config.js +35 -0
  33. package/dist/boilerplates/@batijs/kysely/files/$.env.js +19 -0
  34. package/dist/boilerplates/@batijs/kysely/files/$TODO.md.js +30 -0
  35. package/dist/boilerplates/@batijs/kysely/files/$package.json.js +120 -0
  36. package/dist/boilerplates/@batijs/kysely/files/database/kysely/db.ts +25 -0
  37. package/dist/boilerplates/@batijs/kysely/files/database/kysely/migrate.ts +45 -0
  38. package/dist/boilerplates/@batijs/kysely/files/database/kysely/migrations/001_create_todos_table.ts +16 -0
  39. package/dist/boilerplates/@batijs/kysely/files/database/kysely/queries/todos.ts +20 -0
  40. package/dist/boilerplates/@batijs/kysely/files/database/kysely/types.ts +13 -0
  41. package/dist/boilerplates/@batijs/kysely/types/database/kysely/db.d.ts +5 -0
  42. package/dist/boilerplates/@batijs/kysely/types/database/kysely/migrate.d.ts +1 -0
  43. package/dist/boilerplates/@batijs/kysely/types/database/kysely/migrations/001_create_todos_table.d.ts +4 -0
  44. package/dist/boilerplates/@batijs/kysely/types/database/kysely/queries/todos.d.ts +15 -0
  45. package/dist/boilerplates/@batijs/kysely/types/database/kysely/types.d.ts +10 -0
  46. package/dist/boilerplates/@batijs/mantine/files/$README.md.js +1 -1
  47. package/dist/boilerplates/@batijs/mantine/files/$package.json.js +1 -1
  48. package/dist/boilerplates/@batijs/oxlint/files/$package.json.js +1 -1
  49. package/dist/boilerplates/@batijs/photon/files/$README.md.js +1 -1
  50. package/dist/boilerplates/@batijs/photon/files/$package.json.js +1 -1
  51. package/dist/boilerplates/@batijs/plausible.io/files/$TODO.md.js +1 -1
  52. package/dist/boilerplates/@batijs/pnpm/files/$pnpm-workspace.yaml.js +1 -1
  53. package/dist/boilerplates/@batijs/prettier/files/$package.json.js +1 -1
  54. package/dist/boilerplates/@batijs/prisma/files/$.env.js +1 -1
  55. package/dist/boilerplates/@batijs/prisma/files/$TODO.md.js +1 -1
  56. package/dist/boilerplates/@batijs/prisma/files/$package.json.js +1 -1
  57. package/dist/boilerplates/@batijs/react/files/$README.md.js +1 -1
  58. package/dist/boilerplates/@batijs/react/files/$package.json.js +1 -1
  59. package/dist/boilerplates/@batijs/react/files/$tsconfig.json.js +1 -1
  60. package/dist/boilerplates/@batijs/react/files/$vite.config.ts.js +1 -1
  61. package/dist/boilerplates/@batijs/react-sentry/files/$package.json.js +1 -1
  62. package/dist/boilerplates/@batijs/sentry/files/$.env.js +1 -1
  63. package/dist/boilerplates/@batijs/sentry/files/$README.md.js +1 -1
  64. package/dist/boilerplates/@batijs/sentry/files/$TODO.md.js +1 -1
  65. package/dist/boilerplates/@batijs/sentry/files/$package.json.js +1 -1
  66. package/dist/boilerplates/@batijs/sentry/files/$vite.config.ts.js +1 -1
  67. package/dist/boilerplates/@batijs/sentry/files/pages/$+client.ts.js +1 -1
  68. package/dist/boilerplates/@batijs/shadcn-ui/files/$README.md.js +1 -1
  69. package/dist/boilerplates/@batijs/shadcn-ui/files/$package.json.js +1 -1
  70. package/dist/boilerplates/@batijs/shadcn-ui/files/$tsconfig.json.js +1 -1
  71. package/dist/boilerplates/@batijs/shadcn-ui/files/$vite.config.ts.js +1 -1
  72. package/dist/boilerplates/@batijs/shared/files/$README.md.js +1 -1
  73. package/dist/boilerplates/@batijs/shared/files/$TODO.md.js +1 -1
  74. package/dist/boilerplates/@batijs/shared-db/files/server/db-middleware.ts +10 -3
  75. package/dist/boilerplates/@batijs/shared-db/types/server/db-middleware.d.ts +3 -0
  76. package/dist/boilerplates/@batijs/shared-server/files/$package.json.js +1 -1
  77. package/dist/boilerplates/@batijs/shared-server/files/server/create-todo-handler.ts +6 -0
  78. package/dist/boilerplates/@batijs/shared-server/types/server/create-todo-handler.d.ts +7 -0
  79. package/dist/boilerplates/@batijs/shared-todo/files/global.d.ts +3 -0
  80. package/dist/boilerplates/@batijs/shared-todo/files/pages/todo/+data.ts +5 -0
  81. package/dist/boilerplates/@batijs/solid/files/$README.md.js +1 -1
  82. package/dist/boilerplates/@batijs/solid/files/$package.json.js +1 -1
  83. package/dist/boilerplates/@batijs/solid/files/$tsconfig.json.js +1 -1
  84. package/dist/boilerplates/@batijs/solid/files/$vite.config.ts.js +1 -1
  85. package/dist/boilerplates/@batijs/solid-sentry/files/$package.json.js +1 -1
  86. package/dist/boilerplates/@batijs/sqlite/files/$.env.js +1 -1
  87. package/dist/boilerplates/@batijs/sqlite/files/$TODO.md.js +1 -1
  88. package/dist/boilerplates/@batijs/sqlite/files/$package.json.js +1 -1
  89. package/dist/boilerplates/@batijs/tailwindcss/files/$package.json.js +1 -1
  90. package/dist/boilerplates/@batijs/tailwindcss/files/$vite.config.ts.js +1 -1
  91. package/dist/boilerplates/@batijs/telefunc/files/$package.json.js +1 -1
  92. package/dist/boilerplates/@batijs/telefunc/files/$vite.config.ts.js +1 -1
  93. package/dist/boilerplates/@batijs/telefunc/files/global.d.ts +3 -0
  94. package/dist/boilerplates/@batijs/telefunc/files/pages/todo/TodoList.telefunc.ts +4 -0
  95. package/dist/boilerplates/@batijs/telefunc/files/server/telefunc-handler.ts +3 -0
  96. package/dist/boilerplates/@batijs/trpc/files/$package.json.js +1 -1
  97. package/dist/boilerplates/@batijs/trpc/files/trpc/server.ts +6 -0
  98. package/dist/boilerplates/@batijs/trpc/types/trpc/client.d.ts +4 -0
  99. package/dist/boilerplates/@batijs/trpc/types/trpc/server.d.ts +13 -0
  100. package/dist/boilerplates/@batijs/ts-rest/files/$package.json.js +1 -1
  101. package/dist/boilerplates/@batijs/ts-rest/files/server/ts-rest-handler.ts +6 -0
  102. package/dist/boilerplates/@batijs/vercel/files/$package.json.js +1 -1
  103. package/dist/boilerplates/@batijs/vercel/files/pages/$+config.ts.js +1 -1
  104. package/dist/boilerplates/@batijs/vue/files/$README.md.js +1 -1
  105. package/dist/boilerplates/@batijs/vue/files/$package.json.js +1 -1
  106. package/dist/boilerplates/@batijs/vue/files/$tsconfig.json.js +1 -1
  107. package/dist/boilerplates/@batijs/vue/files/$vite.config.ts.js +1 -1
  108. package/dist/boilerplates/@batijs/vue-sentry/files/$package.json.js +1 -1
  109. package/dist/boilerplates/boilerplates.json +12 -0
  110. package/dist/{chunk-X4G6MHMH.js → chunk-QHC4GN53.js} +2 -2
  111. package/dist/index.js +40 -20
  112. package/package.json +5 -5
@@ -5,7 +5,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
5
5
  import {
6
6
  Nus,
7
7
  gSs
8
- } from "../../../../chunk-X4G6MHMH.js";
8
+ } from "../../../../chunk-QHC4GN53.js";
9
9
  import "../../../../chunk-IAWYWZSL.js";
10
10
  import "../../../../chunk-IHX3I5SM.js";
11
11
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -5,7 +5,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
5
5
  import {
6
6
  TSs,
7
7
  pri
8
- } from "../../../../chunk-X4G6MHMH.js";
8
+ } from "../../../../chunk-QHC4GN53.js";
9
9
  import "../../../../chunk-IAWYWZSL.js";
10
10
  import "../../../../chunk-IHX3I5SM.js";
11
11
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -5,7 +5,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
5
5
  import {
6
6
  TSs,
7
7
  pri
8
- } from "../../../../chunk-X4G6MHMH.js";
8
+ } from "../../../../chunk-QHC4GN53.js";
9
9
  import "../../../../chunk-IAWYWZSL.js";
10
10
  import "../../../../chunk-IHX3I5SM.js";
11
11
 
@@ -1,4 +1,5 @@
1
1
  import type { dbD1, dbSqlite } from "@batijs/drizzle/database/drizzle/db";
2
+ import type { dbKysely, dbKyselyD1 } from "@batijs/kysely/database/kysely/db";
2
3
  import type { db as sqliteDb } from "@batijs/sqlite/database/sqlite/db";
3
4
 
4
5
  //# BATI.hasDatabase
@@ -9,6 +10,8 @@ declare module "telefunc" {
9
10
  'BATI.has("sqlite") && !BATI.hasD1': ReturnType<typeof sqliteDb>;
10
11
  'BATI.has("drizzle") && !BATI.hasD1': ReturnType<typeof dbSqlite>;
11
12
  'BATI.has("drizzle")': ReturnType<typeof dbD1>;
13
+ 'BATI.has("kysely") && !BATI.hasD1': ReturnType<typeof dbKysely>;
14
+ 'BATI.has("kysely")': ReturnType<typeof dbKyselyD1>;
12
15
  "BATI.hasD1": D1Database;
13
16
  _: object;
14
17
  }>;
@@ -2,6 +2,7 @@
2
2
 
3
3
  import * as d1Queries from "@batijs/d1-sqlite/database/d1/queries/todos";
4
4
  import * as drizzleQueries from "@batijs/drizzle/database/drizzle/queries/todos";
5
+ import * as kyselyQueries from "@batijs/kysely/database/kysely/queries/todos";
5
6
  import * as sqliteQueries from "@batijs/sqlite/database/sqlite/queries/todos";
6
7
  import { getContext } from "telefunc";
7
8
 
@@ -12,6 +13,9 @@ export async function onNewTodo({ text }: { text: string }) {
12
13
  } else if (BATI.has("sqlite") && !BATI.hasD1) {
13
14
  const context = getContext();
14
15
  sqliteQueries.insertTodo(context.db, text);
16
+ } else if (BATI.has("kysely")) {
17
+ const context = getContext();
18
+ await kyselyQueries.insertTodo(context.db, text);
15
19
  } else if (BATI.hasD1) {
16
20
  const context = getContext();
17
21
  await d1Queries.insertTodo(context.db, text);
@@ -1,4 +1,5 @@
1
1
  import type { dbD1, dbSqlite } from "@batijs/drizzle/database/drizzle/db";
2
+ import type { dbKysely, dbKyselyD1 } from "@batijs/kysely/database/kysely/db";
2
3
  import type { db as sqliteDb } from "@batijs/sqlite/database/sqlite/db";
3
4
  import { enhance, type UniversalHandler } from "@universal-middleware/core";
4
5
  import { telefunc } from "telefunc";
@@ -14,6 +15,8 @@ export const telefuncHandler: UniversalHandler = enhance(
14
15
  'BATI.has("sqlite") && !BATI.hasD1': { db: ReturnType<typeof sqliteDb> };
15
16
  'BATI.has("drizzle") && !BATI.hasD1': { db: ReturnType<typeof dbSqlite> };
16
17
  'BATI.has("drizzle")': { db: ReturnType<typeof dbD1> };
18
+ 'BATI.has("kysely") && !BATI.hasD1': { db: ReturnType<typeof dbKysely> };
19
+ 'BATI.has("kysely")': { db: ReturnType<typeof dbKyselyD1> };
17
20
  "BATI.hasD1": { db: D1Database };
18
21
  }>),
19
22
  ...(runtime as BATI.If<{
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -1,6 +1,8 @@
1
1
  import * as d1Queries from "@batijs/d1-sqlite/database/d1/queries/todos";
2
2
  import type { dbD1, dbSqlite } from "@batijs/drizzle/database/drizzle/db";
3
3
  import * as drizzleQueries from "@batijs/drizzle/database/drizzle/queries/todos";
4
+ import type { dbKysely, dbKyselyD1 } from "@batijs/kysely/database/kysely/db";
5
+ import * as kyselyQueries from "@batijs/kysely/database/kysely/queries/todos";
4
6
  import type { db as sqliteDb } from "@batijs/sqlite/database/sqlite/db";
5
7
  import * as sqliteQueries from "@batijs/sqlite/database/sqlite/queries/todos";
6
8
  import { initTRPC } from "@trpc/server";
@@ -15,6 +17,8 @@ const t = initTRPC
15
17
  'BATI.has("sqlite") && !BATI.hasD1': { db: ReturnType<typeof sqliteDb> };
16
18
  'BATI.has("drizzle") && !BATI.hasD1': { db: ReturnType<typeof dbSqlite> };
17
19
  'BATI.has("drizzle")': { db: ReturnType<typeof dbD1> };
20
+ 'BATI.has("kysely") && !BATI.hasD1': { db: ReturnType<typeof dbKysely> };
21
+ 'BATI.has("kysely")': { db: ReturnType<typeof dbKyselyD1> };
18
22
  "BATI.hasD1": { db: D1Database };
19
23
  _: object;
20
24
  }>
@@ -44,6 +48,8 @@ export const appRouter = router({
44
48
  await drizzleQueries.insertTodo(opts.ctx.db, opts.input);
45
49
  } else if (BATI.has("sqlite") && !BATI.hasD1) {
46
50
  sqliteQueries.insertTodo(opts.ctx.db, opts.input);
51
+ } else if (BATI.has("kysely")) {
52
+ await kyselyQueries.insertTodo(opts.ctx.db, opts.input);
47
53
  } else if (BATI.hasD1) {
48
54
  await d1Queries.insertTodo(opts.ctx.db, opts.input);
49
55
  } else {
@@ -5,6 +5,10 @@ export declare const trpc: import("@trpc/client").TRPCClient<import("@trpc/serve
5
5
  db: ReturnType<any>;
6
6
  } & {
7
7
  db: ReturnType<any>;
8
+ } & {
9
+ db: ReturnType<any>;
10
+ } & {
11
+ db: ReturnType<any>;
8
12
  } & {
9
13
  db: D1Database;
10
14
  };
@@ -1,4 +1,5 @@
1
1
  import type { dbD1, dbSqlite } from "@batijs/drizzle/database/drizzle/db";
2
+ import type { dbKysely, dbKyselyD1 } from "@batijs/kysely/database/kysely/db";
2
3
  import type { db as sqliteDb } from "@batijs/sqlite/database/sqlite/db";
3
4
  /**
4
5
  * Export reusable router and procedure helpers
@@ -11,6 +12,10 @@ export declare const router: import("@trpc/server").TRPCRouterBuilder<{
11
12
  db: ReturnType<typeof dbSqlite>;
12
13
  } & {
13
14
  db: ReturnType<typeof dbD1>;
15
+ } & {
16
+ db: ReturnType<typeof dbKysely>;
17
+ } & {
18
+ db: ReturnType<typeof dbKyselyD1>;
14
19
  } & {
15
20
  db: D1Database;
16
21
  };
@@ -24,6 +29,10 @@ export declare const publicProcedure: import("@trpc/server").TRPCProcedureBuilde
24
29
  db: ReturnType<typeof dbSqlite>;
25
30
  } & {
26
31
  db: ReturnType<typeof dbD1>;
32
+ } & {
33
+ db: ReturnType<typeof dbKysely>;
34
+ } & {
35
+ db: ReturnType<typeof dbKyselyD1>;
27
36
  } & {
28
37
  db: D1Database;
29
38
  }, object, object, import("@trpc/server").TRPCUnsetMarker, import("@trpc/server").TRPCUnsetMarker, import("@trpc/server").TRPCUnsetMarker, import("@trpc/server").TRPCUnsetMarker, false>;
@@ -34,6 +43,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
34
43
  db: ReturnType<typeof dbSqlite>;
35
44
  } & {
36
45
  db: ReturnType<typeof dbD1>;
46
+ } & {
47
+ db: ReturnType<typeof dbKysely>;
48
+ } & {
49
+ db: ReturnType<typeof dbKyselyD1>;
37
50
  } & {
38
51
  db: D1Database;
39
52
  };
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -2,6 +2,8 @@
2
2
  import * as d1Queries from "@batijs/d1-sqlite/database/d1/queries/todos";
3
3
  import type { dbD1, dbSqlite } from "@batijs/drizzle/database/drizzle/db";
4
4
  import * as drizzleQueries from "@batijs/drizzle/database/drizzle/queries/todos";
5
+ import type { dbKysely, dbKyselyD1 } from "@batijs/kysely/database/kysely/db";
6
+ import * as kyselyQueries from "@batijs/kysely/database/kysely/queries/todos";
5
7
  import type { db as sqliteDb } from "@batijs/sqlite/database/sqlite/db";
6
8
  import * as sqliteQueries from "@batijs/sqlite/database/sqlite/queries/todos";
7
9
  import { fetchRequestHandler, tsr } from "@ts-rest/serverless/fetch";
@@ -19,6 +21,8 @@ const router = tsr
19
21
  'BATI.has("sqlite") && !BATI.hasD1': { db: ReturnType<typeof sqliteDb> };
20
22
  'BATI.has("drizzle") && !BATI.hasD1': { db: ReturnType<typeof dbSqlite> };
21
23
  'BATI.has("drizzle")': { db: ReturnType<typeof dbD1> };
24
+ 'BATI.has("kysely") && !BATI.hasD1': { db: ReturnType<typeof dbKysely> };
25
+ 'BATI.has("kysely")': { db: ReturnType<typeof dbKyselyD1> };
22
26
  "BATI.hasD1": { db: D1Database };
23
27
  _: object;
24
28
  }>
@@ -37,6 +41,8 @@ const router = tsr
37
41
  await drizzleQueries.insertTodo(_ctx.db, body.text);
38
42
  } else if (BATI.has("sqlite") && !BATI.hasD1) {
39
43
  sqliteQueries.insertTodo(_ctx.db, body.text);
44
+ } else if (BATI.has("kysely")) {
45
+ await kyselyQueries.insertTodo(_ctx.db, body.text);
40
46
  } else if (BATI.hasD1) {
41
47
  await d1Queries.insertTodo(_ctx.db, body.text);
42
48
  } else {
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  TSs
7
- } from "../../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  gSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  ySs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -5,7 +5,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
5
5
  import {
6
6
  TSs,
7
7
  pri
8
- } from "../../../../chunk-X4G6MHMH.js";
8
+ } from "../../../../chunk-QHC4GN53.js";
9
9
  import "../../../../chunk-IAWYWZSL.js";
10
10
  import "../../../../chunk-IHX3I5SM.js";
11
11
 
@@ -4,7 +4,7 @@ const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
6
  bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
7
+ } from "../../../../chunk-QHC4GN53.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -41,6 +41,12 @@
41
41
  "files"
42
42
  ]
43
43
  },
44
+ {
45
+ "folder": "@batijs/d1-kysely",
46
+ "subfolders": [
47
+ "files"
48
+ ]
49
+ },
44
50
  {
45
51
  "folder": "@batijs/d1-sqlite",
46
52
  "subfolders": [
@@ -89,6 +95,12 @@
89
95
  "files"
90
96
  ]
91
97
  },
98
+ {
99
+ "folder": "@batijs/kysely",
100
+ "subfolders": [
101
+ "files"
102
+ ]
103
+ },
92
104
  {
93
105
  "folder": "@batijs/mantine",
94
106
  "subfolders": [