@stoneforge/quarry 1.4.0 → 1.4.1
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/README.md +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ import { createQuarryAPI } from '@stoneforge/quarry/api';
|
|
|
29
29
|
import type { Task } from '@stoneforge/core';
|
|
30
30
|
|
|
31
31
|
// Create a StorageBackend (auto-detects Bun/Node runtime)
|
|
32
|
-
const storage = createStorage('.stoneforge/db.sqlite');
|
|
32
|
+
const storage = createStorage({ path: '.stoneforge/db.sqlite' });
|
|
33
33
|
initializeSchema(storage);
|
|
34
34
|
|
|
35
35
|
// Create the API
|
|
@@ -235,7 +235,7 @@ Creates a QuarryAPI instance. Requires a `StorageBackend` from `@stoneforge/stor
|
|
|
235
235
|
import { createSyncService } from '@stoneforge/quarry/sync';
|
|
236
236
|
import { createStorage, initializeSchema } from '@stoneforge/storage';
|
|
237
237
|
|
|
238
|
-
const storage = createStorage('.stoneforge/db.sqlite');
|
|
238
|
+
const storage = createStorage({ path: '.stoneforge/db.sqlite' });
|
|
239
239
|
initializeSchema(storage);
|
|
240
240
|
|
|
241
241
|
const sync = createSyncService(storage);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoneforge/quarry",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core SDK for Stoneforge - API, services, sync, and CLI",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
"hono": "^4.7.0",
|
|
91
91
|
"ws": "^8.18.0",
|
|
92
92
|
"yaml": "^2.8.2",
|
|
93
|
-
"@stoneforge/core": "1.4.
|
|
94
|
-
"@stoneforge/shared-routes": "1.4.
|
|
95
|
-
"@stoneforge/storage": "1.4.
|
|
93
|
+
"@stoneforge/core": "1.4.1",
|
|
94
|
+
"@stoneforge/shared-routes": "1.4.1",
|
|
95
|
+
"@stoneforge/storage": "1.4.1"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@types/bun": "latest",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"vitest": "^4.0.18"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
105
|
-
"@stoneforge/smithy": "^1.4.
|
|
105
|
+
"@stoneforge/smithy": "^1.4.1"
|
|
106
106
|
},
|
|
107
107
|
"peerDependenciesMeta": {
|
|
108
108
|
"@stoneforge/smithy": {
|