@mastra/libsql 0.0.0-declaration-maps-20250730004430 → 0.0.0-declaration-maps-20250730185206

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,6 +1,19 @@
1
1
  # @mastra/libsql
2
2
 
3
- ## 0.0.0-declaration-maps-20250730004430
3
+ ## 0.0.0-declaration-maps-20250730185206
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [33dcb07]
8
+ - Updated dependencies [d30b1a0]
9
+ - Updated dependencies [bff87f7]
10
+ - @mastra/core@0.0.0-declaration-maps-20250730185206
11
+
12
+ ## 0.12.0
13
+
14
+ ### Minor Changes
15
+
16
+ - f42c4c2: update peer deps for packages to latest core range
4
17
 
5
18
  ### Patch Changes
6
19
 
@@ -43,7 +56,17 @@
43
56
  - Updated dependencies [b8efbb9]
44
57
  - Updated dependencies [71466e7]
45
58
  - Updated dependencies [0c99fbe]
46
- - @mastra/core@0.0.0-declaration-maps-20250730004430
59
+ - @mastra/core@0.12.0
60
+
61
+ ## 0.12.0-alpha.2
62
+
63
+ ### Minor Changes
64
+
65
+ - f42c4c2: update peer deps for packages to latest core range
66
+
67
+ ### Patch Changes
68
+
69
+ - @mastra/core@0.12.0-alpha.5
47
70
 
48
71
  ## 0.11.3-alpha.1
49
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/libsql",
3
- "version": "0.0.0-declaration-maps-20250730004430",
3
+ "version": "0.0.0-declaration-maps-20250730185206",
4
4
  "description": "Libsql provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,12 +29,12 @@
29
29
  "tsup": "^8.5.0",
30
30
  "typescript": "^5.8.3",
31
31
  "vitest": "^3.2.4",
32
- "@internal/storage-test-utils": "0.0.19",
33
- "@internal/lint": "0.0.0-declaration-maps-20250730004430",
34
- "@mastra/core": "0.0.0-declaration-maps-20250730004430"
32
+ "@internal/lint": "0.0.0-declaration-maps-20250730185206",
33
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206",
34
+ "@internal/storage-test-utils": "0.0.20"
35
35
  },
36
36
  "peerDependencies": {
37
- "@mastra/core": "0.0.0-declaration-maps-20250730004430"
37
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsup --silent --config tsup.config.ts",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*"],
3
+ "include": ["src/**/*", "tsup.config.ts"],
4
4
  "exclude": ["node_modules", "**/*.test.ts"]
5
5
  }
package/tsup.config.ts CHANGED
@@ -1,9 +1,6 @@
1
1
  import { spawn } from 'child_process';
2
2
  import { promisify } from 'util';
3
3
  import { defineConfig } from 'tsup';
4
- import type { Options } from 'tsup';
5
-
6
- type Plugin = NonNullable<Options['plugins']>[number];
7
4
 
8
5
  const exec = promisify(spawn);
9
6