@batijs/cli 0.0.542 → 0.0.544

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 (115) hide show
  1. package/dist/boilerplates/@batijs/auth0/files/$.env.js +5 -5
  2. package/dist/boilerplates/@batijs/auth0/files/$TODO.md.js +3 -3
  3. package/dist/boilerplates/@batijs/auth0/files/$wrangler.jsonc.js +3 -3
  4. package/dist/boilerplates/@batijs/authjs/files/$package.json.js +3 -3
  5. package/dist/boilerplates/@batijs/aws/files/$README.md.js +5 -5
  6. package/dist/boilerplates/@batijs/aws/files/$TODO.md.js +5 -5
  7. package/dist/boilerplates/@batijs/aws/files/$package.json.js +6 -6
  8. package/dist/boilerplates/@batijs/aws/files/$tsconfig.json.js +3 -3
  9. package/dist/boilerplates/@batijs/aws/files/cdk/bin/infrastructure.ts +1 -1
  10. package/dist/boilerplates/@batijs/biome/files/$package.json.js +3 -3
  11. package/dist/boilerplates/@batijs/cloudflare/files/$TODO.md.js +5 -5
  12. package/dist/boilerplates/@batijs/cloudflare/files/$package.json.js +5 -5
  13. package/dist/boilerplates/@batijs/cloudflare/files/$tsconfig.json.js +3 -3
  14. package/dist/boilerplates/@batijs/compiled/files/$package.json.js +4 -4
  15. package/dist/boilerplates/@batijs/compiled/files/$vite.config.ts.js +5 -5
  16. package/dist/boilerplates/@batijs/d1/files/$TODO.md.js +5 -5
  17. package/dist/boilerplates/@batijs/d1/files/$package.json.js +4 -4
  18. package/dist/boilerplates/@batijs/d1/files/$wrangler.jsonc.js +3 -3
  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 +3 -3
  23. package/dist/boilerplates/@batijs/drizzle/files/$.env.js +3 -3
  24. package/dist/boilerplates/@batijs/drizzle/files/$TODO.md.js +5 -5
  25. package/dist/boilerplates/@batijs/drizzle/files/$package.json.js +5 -5
  26. package/dist/boilerplates/@batijs/eslint/files/$package.json.js +4 -4
  27. package/dist/boilerplates/@batijs/express/files/$package.json.js +7 -7
  28. package/dist/boilerplates/@batijs/fastify/files/$package.json.js +6 -6
  29. package/dist/boilerplates/@batijs/google-analytics/files/$.env.js +3 -3
  30. package/dist/boilerplates/@batijs/h3/files/$package.json.js +7 -7
  31. package/dist/boilerplates/@batijs/hono/files/$package.json.js +6 -6
  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 +3 -3
  47. package/dist/boilerplates/@batijs/mantine/files/$package.json.js +6 -6
  48. package/dist/boilerplates/@batijs/oxlint/files/$package.json.js +5 -5
  49. package/dist/boilerplates/@batijs/photon/files/$README.md.js +3 -3
  50. package/dist/boilerplates/@batijs/photon/files/$package.json.js +4 -4
  51. package/dist/boilerplates/@batijs/plausible.io/files/$TODO.md.js +3 -3
  52. package/dist/boilerplates/@batijs/pnpm/files/$pnpm-workspace.yaml.js +3 -3
  53. package/dist/boilerplates/@batijs/prettier/files/$package.json.js +4 -4
  54. package/dist/boilerplates/@batijs/prisma/files/$.env.js +3 -3
  55. package/dist/boilerplates/@batijs/prisma/files/$TODO.md.js +5 -5
  56. package/dist/boilerplates/@batijs/prisma/files/$package.json.js +5 -5
  57. package/dist/boilerplates/@batijs/react/files/$README.md.js +3 -3
  58. package/dist/boilerplates/@batijs/react/files/$package.json.js +8 -8
  59. package/dist/boilerplates/@batijs/react/files/$tsconfig.json.js +3 -3
  60. package/dist/boilerplates/@batijs/react/files/$vite.config.ts.js +5 -5
  61. package/dist/boilerplates/@batijs/react-sentry/files/$package.json.js +7 -7
  62. package/dist/boilerplates/@batijs/sentry/files/$.env.js +4 -4
  63. package/dist/boilerplates/@batijs/sentry/files/$README.md.js +5 -5
  64. package/dist/boilerplates/@batijs/sentry/files/$TODO.md.js +3 -3
  65. package/dist/boilerplates/@batijs/sentry/files/$package.json.js +4 -4
  66. package/dist/boilerplates/@batijs/sentry/files/$vite.config.ts.js +7 -7
  67. package/dist/boilerplates/@batijs/sentry/files/pages/$+client.ts.js +9 -9
  68. package/dist/boilerplates/@batijs/shadcn-ui/files/$README.md.js +5 -5
  69. package/dist/boilerplates/@batijs/shadcn-ui/files/$package.json.js +4 -4
  70. package/dist/boilerplates/@batijs/shadcn-ui/files/$tsconfig.json.js +3 -3
  71. package/dist/boilerplates/@batijs/shadcn-ui/files/$vite.config.ts.js +5 -5
  72. package/dist/boilerplates/@batijs/shared/files/$README.md.js +7 -7
  73. package/dist/boilerplates/@batijs/shared/files/$TODO.md.js +3 -3
  74. package/dist/boilerplates/@batijs/shared/files/package.json +1 -1
  75. package/dist/boilerplates/@batijs/shared-db/files/server/db-middleware.ts +10 -3
  76. package/dist/boilerplates/@batijs/shared-db/types/server/db-middleware.d.ts +3 -0
  77. package/dist/boilerplates/@batijs/shared-server/files/$package.json.js +4 -4
  78. package/dist/boilerplates/@batijs/shared-server/files/server/create-todo-handler.ts +6 -0
  79. package/dist/boilerplates/@batijs/shared-server/types/server/create-todo-handler.d.ts +7 -0
  80. package/dist/boilerplates/@batijs/shared-todo/files/global.d.ts +3 -0
  81. package/dist/boilerplates/@batijs/shared-todo/files/pages/todo/+data.ts +5 -0
  82. package/dist/boilerplates/@batijs/solid/files/$README.md.js +3 -3
  83. package/dist/boilerplates/@batijs/solid/files/$package.json.js +5 -5
  84. package/dist/boilerplates/@batijs/solid/files/$tsconfig.json.js +3 -3
  85. package/dist/boilerplates/@batijs/solid/files/$vite.config.ts.js +5 -5
  86. package/dist/boilerplates/@batijs/solid-sentry/files/$package.json.js +5 -5
  87. package/dist/boilerplates/@batijs/sqlite/files/$.env.js +3 -3
  88. package/dist/boilerplates/@batijs/sqlite/files/$TODO.md.js +5 -5
  89. package/dist/boilerplates/@batijs/sqlite/files/$package.json.js +3 -3
  90. package/dist/boilerplates/@batijs/tailwindcss/files/$package.json.js +5 -5
  91. package/dist/boilerplates/@batijs/tailwindcss/files/$vite.config.ts.js +5 -5
  92. package/dist/boilerplates/@batijs/telefunc/files/$package.json.js +4 -4
  93. package/dist/boilerplates/@batijs/telefunc/files/$vite.config.ts.js +5 -5
  94. package/dist/boilerplates/@batijs/telefunc/files/global.d.ts +3 -0
  95. package/dist/boilerplates/@batijs/telefunc/files/pages/todo/TodoList.telefunc.ts +4 -0
  96. package/dist/boilerplates/@batijs/telefunc/files/server/telefunc-handler.ts +3 -0
  97. package/dist/boilerplates/@batijs/trpc/files/$package.json.js +4 -4
  98. package/dist/boilerplates/@batijs/trpc/files/trpc/server.ts +6 -0
  99. package/dist/boilerplates/@batijs/trpc/types/trpc/client.d.ts +7 -3
  100. package/dist/boilerplates/@batijs/trpc/types/trpc/server.d.ts +13 -0
  101. package/dist/boilerplates/@batijs/ts-rest/files/$package.json.js +3 -3
  102. package/dist/boilerplates/@batijs/ts-rest/files/server/ts-rest-handler.ts +6 -0
  103. package/dist/boilerplates/@batijs/vercel/files/$package.json.js +5 -5
  104. package/dist/boilerplates/@batijs/vercel/files/pages/$+config.ts.js +3 -3
  105. package/dist/boilerplates/@batijs/vue/files/$README.md.js +3 -3
  106. package/dist/boilerplates/@batijs/vue/files/$package.json.js +5 -5
  107. package/dist/boilerplates/@batijs/vue/files/$tsconfig.json.js +3 -3
  108. package/dist/boilerplates/@batijs/vue/files/$vite.config.ts.js +5 -5
  109. package/dist/boilerplates/@batijs/vue-sentry/files/$package.json.js +5 -5
  110. package/dist/boilerplates/boilerplates.json +12 -0
  111. package/dist/{chunk-X4G6MHMH.js → chunk-CIBJZ5MN.js} +75803 -75758
  112. package/dist/index.js +87 -67
  113. package/dist/{jiti-ZW3ADF2F-2SLKRUEN.js → jiti-PKZMRTZN-BIHN3GUM.js} +2 -3
  114. package/dist/{prompt-YBELZKBA.js → prompt-424IOCOV.js} +2 -2
  115. package/package.json +8 -8
@@ -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
  };
@@ -3,8 +3,8 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ NEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -91,7 +91,7 @@ var require_package = __commonJS({
91
91
  }
92
92
  });
93
93
  async function getPackageJson(props) {
94
- const packageJson = await bSs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
94
+ const packageJson = await NEs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
95
95
  return packageJson.addDevDependencies(["zod"]).addDependencies(["@ts-rest/core", "@ts-rest/serverless", "@universal-middleware/core"]);
96
96
  }
97
97
  export {
@@ -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 {
@@ -3,8 +3,8 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ NEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -51,11 +51,11 @@ var require_package = __commonJS({
51
51
  license: "MIT",
52
52
  devDependencies: {
53
53
  "@batijs/compile": "workspace:*",
54
- "@photonjs/vercel": "^0.1.15",
54
+ "@photonjs/vercel": "^0.1.20",
55
55
  "@types/node": "^20.19.25",
56
56
  h3: "~1.15.4",
57
57
  vike: "^0.4.247",
58
- vite: "^7.2.6"
58
+ vite: "^7.2.7"
59
59
  },
60
60
  dependencies: {
61
61
  "@batijs/core": "workspace:*"
@@ -67,7 +67,7 @@ var require_package = __commonJS({
67
67
  }
68
68
  });
69
69
  async function getPackageJson(props) {
70
- const packageJson = await bSs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
70
+ const packageJson = await NEs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
71
71
  return packageJson.removeScript("prod").addDevDependencies(["h3"]).addDependencies(["@photonjs/vercel"]);
72
72
  }
73
73
  export {
@@ -3,14 +3,14 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- TSs
7
- } from "../../../../../chunk-X4G6MHMH.js";
6
+ IEs
7
+ } from "../../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../../chunk-IHX3I5SM.js";
10
10
 
11
11
  // ../../boilerplates/vercel/dist/files/pages/$+config.ts.js
12
12
  async function getViteConfig(props) {
13
- const mod = await TSs(props);
13
+ const mod = await IEs(props);
14
14
  mod.exports.default.prerender = true;
15
15
  return mod.generate().code;
16
16
  }
@@ -3,14 +3,14 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- gSs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ PEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
11
11
  // ../../boilerplates/vue/dist/files/$README.md.js
12
12
  async function getReadme(props) {
13
- const content = await gSs(props);
13
+ const content = await PEs(props);
14
14
  const about = `
15
15
  ## Vike
16
16
 
@@ -3,8 +3,8 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ NEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -57,9 +57,9 @@ var require_package = __commonJS({
57
57
  tailwindcss: "^4.1.17",
58
58
  typescript: "^5.9.3",
59
59
  vike: "^0.4.247",
60
- "vike-photon": "^0.1.21",
60
+ "vike-photon": "^0.1.22",
61
61
  "vike-vue": "^0.9.6",
62
- vite: "^7.2.6",
62
+ vite: "^7.2.7",
63
63
  vue: "^3.5.25",
64
64
  "vue-gtag": "^3.6.3"
65
65
  },
@@ -121,7 +121,7 @@ var require_package = __commonJS({
121
121
  }
122
122
  });
123
123
  async function getPackageJson(props) {
124
- const packageJson = await bSs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
124
+ const packageJson = await NEs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
125
125
  return packageJson.addDevDependencies(["vite", "@vitejs/plugin-vue"]).addDependencies(["vike-vue", "vike", "vue"]).addDependencies(["vue-gtag"], props.meta.BATI.has("google-analytics"));
126
126
  }
127
127
  export {
@@ -3,14 +3,14 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- ySs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ kEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
11
11
  // ../../boilerplates/vue/dist/files/$tsconfig.json.js
12
12
  async function getTsConfig(props) {
13
- const tsConfig = await ySs(props);
13
+ const tsConfig = await kEs(props);
14
14
  return tsConfig;
15
15
  }
16
16
  export {
@@ -3,16 +3,16 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- TSs,
7
- pri
8
- } from "../../../../chunk-X4G6MHMH.js";
6
+ IEs,
7
+ gni
8
+ } from "../../../../chunk-CIBJZ5MN.js";
9
9
  import "../../../../chunk-IAWYWZSL.js";
10
10
  import "../../../../chunk-IHX3I5SM.js";
11
11
 
12
12
  // ../../boilerplates/vue/dist/files/$vite.config.ts.js
13
13
  async function getViteConfig(props) {
14
- const mod = await TSs(props);
15
- pri(mod, {
14
+ const mod = await IEs(props);
15
+ gni(mod, {
16
16
  from: "@vitejs/plugin-vue",
17
17
  constructor: "vue"
18
18
  });
@@ -3,8 +3,8 @@ import { createRequire as createRequire_BATI_CLI } from 'module';
3
3
  const require = createRequire_BATI_CLI(import.meta.url);
4
4
 
5
5
  import {
6
- bSs
7
- } from "../../../../chunk-X4G6MHMH.js";
6
+ NEs
7
+ } from "../../../../chunk-CIBJZ5MN.js";
8
8
  import "../../../../chunk-IAWYWZSL.js";
9
9
  import "../../../../chunk-IHX3I5SM.js";
10
10
 
@@ -51,10 +51,10 @@ var require_package = __commonJS({
51
51
  license: "MIT",
52
52
  devDependencies: {
53
53
  "@batijs/compile": "workspace:*",
54
- "@sentry/vue": "^10.27.0",
54
+ "@sentry/vue": "^10.29.0",
55
55
  "@types/node": "^20.19.25",
56
56
  "vike-vue": "^0.9.6",
57
- vite: "^7.2.6",
57
+ vite: "^7.2.7",
58
58
  vue: "^3.5.25"
59
59
  },
60
60
  dependencies: {
@@ -79,7 +79,7 @@ var require_package = __commonJS({
79
79
  }
80
80
  });
81
81
  async function getPackageJson(props) {
82
- const packageJson = await bSs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
82
+ const packageJson = await NEs(props, await Promise.resolve().then(() => __toESM(require_package(), 1)).then((x) => x.default));
83
83
  return packageJson.addDependencies(["@sentry/vue"]);
84
84
  }
85
85
  export {
@@ -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": [