Skip to content

Commit a2abcff

Browse files
committed
Fix published package imports
1 parent d6e2814 commit a2abcff

62 files changed

Lines changed: 395 additions & 110 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"autumn-js": "^1.2.8",
6161
"drizzle-orm": "catalog:",
6262
"effect": "catalog:",
63-
"fumadb": "workspace:*",
63+
"@executor-js/fumadb": "workspace:*",
6464
"jose": "^5.6.3",
6565
"postgres": "^3.4.9",
6666
"posthog-js": "^1.372.5",

apps/cloud/src/db/executor-schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
uniqueIndex,
99
bigint,
1010
} from "drizzle-orm/pg-core";
11-
import { createId } from "fumadb/cuid";
11+
import { createId } from "@executor-js/fumadb/cuid";
1212

1313
export const integration = pgTable(
1414
"integration",

apps/cloud/src/db/fuma.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Effect, Layer } from "effect";
2-
import { type FumaDB } from "fumadb";
3-
import { type DrizzleConfig } from "fumadb/adapters/drizzle";
4-
import { type schema as fumaSchema, type RelationsMap } from "fumadb/schema";
2+
import { type FumaDB } from "@executor-js/fumadb";
3+
import { type DrizzleConfig } from "@executor-js/fumadb/adapters/drizzle";
4+
import { type schema as fumaSchema, type RelationsMap } from "@executor-js/fumadb/schema";
55

66
import {
77
createExecutorFumaDb,

apps/host-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@tanstack/react-router": "catalog:",
3434
"drizzle-orm": "catalog:",
3535
"effect": "catalog:",
36-
"fumadb": "workspace:*",
36+
"@executor-js/fumadb": "workspace:*",
3737
"jose": "^5.9.6",
3838
"quickjs-emscripten-core": "0.31.0",
3939
"react": "catalog:",

apps/host-cloudflare/src/db/d1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { drizzle } from "drizzle-orm/d1";
22
import {
33
createDrizzleRuntimeSchemaFromTables,
44
ensureDrizzleRuntimeSchemaFromTables,
5-
} from "fumadb/adapters/drizzle";
5+
} from "@executor-js/fumadb/adapters/drizzle";
66
import type { D1Database, R2Bucket } from "@cloudflare/workers-types";
77

88
import { wrapD1WithR2Offload } from "./r2-blob-offload";

apps/host-selfhost/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"better-auth": "^1.6.11",
3838
"drizzle-orm": "catalog:",
3939
"effect": "catalog:",
40-
"fumadb": "workspace:*",
40+
"@executor-js/fumadb": "workspace:*",
4141
"react": "catalog:",
4242
"react-dom": "catalog:"
4343
},

apps/host-selfhost/src/db/self-host-db.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { dirname, resolve } from "node:path";
33

44
import { createClient, type Client } from "@libsql/client";
55
import { drizzle, type LibSQLDatabase } from "drizzle-orm/libsql";
6-
import { type FumaDB } from "fumadb";
6+
import { type FumaDB } from "@executor-js/fumadb";
77
import {
88
createDrizzleRuntimeSchemaFromTables,
99
ensureDrizzleRuntimeSchemaFromTables,
10-
} from "fumadb/adapters/drizzle";
11-
import { type schema as fumaSchema, type RelationsMap } from "fumadb/schema";
10+
} from "@executor-js/fumadb/adapters/drizzle";
11+
import { type schema as fumaSchema, type RelationsMap } from "@executor-js/fumadb/schema";
1212
import { Context, Effect, Layer } from "effect";
1313

1414
import {

apps/local/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@tanstack/react-router": "catalog:",
4545
"drizzle-orm": "catalog:",
4646
"effect": "catalog:",
47-
"fumadb": "workspace:*",
47+
"@executor-js/fumadb": "workspace:*",
4848
"jsonc-parser": "^3.3.1",
4949
"react": "catalog:",
5050
"react-dom": "catalog:"

apps/local/src/db/sqlite-fumadb.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { type Client } from "@libsql/client";
22
import { Layer } from "effect";
33
import { drizzle, type LibSQLDatabase } from "drizzle-orm/libsql";
4-
import { type FumaDB } from "fumadb";
4+
import { type FumaDB } from "@executor-js/fumadb";
55
import {
66
createDrizzleRuntimeSchemaFromTables,
77
createDrizzleRuntimeSchemaSqlFromTables,
8-
} from "fumadb/adapters/drizzle";
9-
import { type schema as fumaSchema, type RelationsMap } from "fumadb/schema";
8+
} from "@executor-js/fumadb/adapters/drizzle";
9+
import { type schema as fumaSchema, type RelationsMap } from "@executor-js/fumadb/schema";
1010

1111
import { createExecutorFumaDb, DbProvider, type ExecutorDbHandle } from "@executor-js/api/server";
1212
import type { FumaDb, FumaTables } from "@executor-js/sdk";

apps/local/src/db/v1-v2-migration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { Client } from "@libsql/client";
44
import { drizzle } from "drizzle-orm/libsql";
55
import { migrate } from "drizzle-orm/libsql/migrator";
66
import { Effect } from "effect";
7-
import { createId } from "fumadb/cuid";
7+
import { createId } from "@executor-js/fumadb/cuid";
88
import { createHash, randomBytes } from "node:crypto";
99
import * as fs from "node:fs";
1010
import { homedir, tmpdir } from "node:os";

0 commit comments

Comments
 (0)