Rename directory

This commit is contained in:
2026-02-02 16:53:22 -05:00
parent 0afc3efa5d
commit a1dbf71de4
10 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import { DateTime } from "ts-luxon";
import { get, User } from "../framework/hydrators/user";
import { get, User } from "../diachron/hydrators/user";
import { request } from "../request";
import { html, render } from "../request/util";
import type { Call, Result, Route } from "../types";

View File

@@ -113,7 +113,7 @@ async function raw<T = unknown>(
//
// Migrations directory: express/migrations/
const FRAMEWORK_MIGRATIONS_DIR = path.join(__dirname, "framework/migrations");
const FRAMEWORK_MIGRATIONS_DIR = path.join(__dirname, "diachron/migrations");
const APP_MIGRATIONS_DIR = path.join(__dirname, "migrations");
const MIGRATIONS_TABLE = "_migrations";

View File

@@ -1,5 +1,5 @@
// Tests for user hydrator
// Run with: cd express && DB_PORT=5433 DB_USER=diachron_test DB_PASSWORD=diachron_test DB_NAME=diachron_test ../cmd npx tsx --test framework/hydrators/tests/user.test.ts
// Run with: cd express && DB_PORT=5433 DB_USER=diachron_test DB_PASSWORD=diachron_test DB_NAME=diachron_test ../cmd npx tsx --test diachron/hydrators/tests/user.test.ts
import assert from "node:assert/strict";
import { after, before, beforeEach, describe, it } from "node:test";