@pikku/kysely-bun-sqlite 0.12.3 → 0.12.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pikku/kysely-bun-sqlite
2
2
 
3
+ ## 0.12.4
4
+
5
+ ### Patch Changes
6
+
7
+ - fd9d834: Stop publishing internals that only their own package or file used. The declarations stay; only the entrypoint re-export is removed, so nothing that imported a name from where it is declared is affected.
8
+ - Updated dependencies [fd9d834]
9
+ - @pikku/kysely@0.13.15
10
+ - @pikku/kysely-sqlite@0.12.11
11
+
3
12
  ## 0.12.3
4
13
 
5
14
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  export { BunSqliteDatabase } from './bun-sqlite-adapter.js';
2
2
  export { createBunSqliteKysely, type CreateBunSqliteKyselyOptions, } from './create-bun-sqlite-kysely.js';
3
3
  export { registerSqliteFunctions } from './register-functions.js';
4
- export { SqliteFunctionsUnsupportedError, type SqliteFunction, type SqliteFunctionMap, } from '@pikku/kysely-sqlite';
5
- export { createCoercionPlugin, type CoercionMap, type ColumnKind, type CreateCoercionPluginOptions, } from './coercion-plugin.js';
4
+ export { SqliteFunctionsUnsupportedError, type SqliteFunctionMap, } from '@pikku/kysely-sqlite';
5
+ export { createCoercionPlugin, type ColumnKind, type CreateCoercionPluginOptions, } from './coercion-plugin.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/kysely-bun-sqlite",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "Kysely driver for Pikku backed by the built-in bun:sqlite module",
5
5
  "author": "yasser.fadl@gmail.com",
6
6
  "license": "MIT",
@@ -19,8 +19,8 @@
19
19
  "bun": ">=1.0.0"
20
20
  },
21
21
  "dependencies": {
22
- "@pikku/kysely": "^0.13.8",
23
- "@pikku/kysely-sqlite": "^0.12.10",
22
+ "@pikku/kysely": "^0.13.15",
23
+ "@pikku/kysely-sqlite": "^0.12.11",
24
24
  "kysely": "^0.29.0"
25
25
  },
26
26
  "devDependencies": {
package/src/index.ts CHANGED
@@ -6,12 +6,10 @@ export {
6
6
  export { registerSqliteFunctions } from './register-functions.js'
7
7
  export {
8
8
  SqliteFunctionsUnsupportedError,
9
- type SqliteFunction,
10
9
  type SqliteFunctionMap,
11
10
  } from '@pikku/kysely-sqlite'
12
11
  export {
13
12
  createCoercionPlugin,
14
- type CoercionMap,
15
13
  type ColumnKind,
16
14
  type CreateCoercionPluginOptions,
17
15
  } from './coercion-plugin.js'