diff --git a/packages/core-shared/package.json b/packages/core-shared/package.json index b7ba770..ecf2729 100644 --- a/packages/core-shared/package.json +++ b/packages/core-shared/package.json @@ -5,6 +5,9 @@ "type": "module", "exports": { ".": "./src/index.ts", + "./di": "./src/di/index.ts", + "./di/bind-protocols": "./src/di/bind-protocols.ts", + "./di/bind-context": "./src/di/bind-context.ts", "./jobs": "./src/jobs/index.ts", "./payload": "./src/payload/index.ts", "./trpc/init": "./src/trpc/init.ts", diff --git a/packages/core-shared/src/di/index.ts b/packages/core-shared/src/di/index.ts new file mode 100644 index 0000000..97bb3b1 --- /dev/null +++ b/packages/core-shared/src/di/index.ts @@ -0,0 +1,2 @@ +export * from "./bind-protocols"; +export * from "./bind-context";