@versdotsh/reef 0.1.4 → 0.1.5

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5
4
+
5
+ - Move updater service to `examples/services/` (not core infrastructure)
6
+
3
7
  ## 0.1.4
4
8
 
5
9
  - Add updater service — auto-update reef from npm
@@ -18,7 +18,7 @@ import { Hono } from "hono";
18
18
  import { execSync, spawn } from "node:child_process";
19
19
  import { readFileSync } from "node:fs";
20
20
  import { join } from "node:path";
21
- import type { ServiceModule, ServiceContext } from "../../src/core/types.js";
21
+ import type { ServiceModule, ServiceContext } from "../src/core/types.js";
22
22
 
23
23
  interface UpdateRecord {
24
24
  from: string;
@@ -1,5 +1,5 @@
1
1
  import { describe, test, expect, afterAll } from "bun:test";
2
- import { createTestHarness, type TestHarness } from "../../src/core/testing.js";
2
+ import { createTestHarness, type TestHarness } from "../../../src/core/testing.js";
3
3
  import updater from "./index.js";
4
4
 
5
5
  let t: TestHarness;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versdotsh/reef",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Self-improving fleet infrastructure — the minimum kernel agents need to build their own tools",
5
5
  "type": "module",
6
6
  "scripts": {