Merge pull request #150 from calcom/monorepo/ee

Fixes import
pull/9078/head
Omar López 2022-07-28 13:58:36 -06:00 committed by GitHub
commit 0f13e80785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 9 deletions

View File

@ -84,7 +84,7 @@ We're calling several packages from monorepo, this need to be transpiled before
"@calcom/app-store",
"@calcom/prisma",
"@calcom/lib",
"@calcom/ee",
"@calcom/features",
```
## API Endpoint Validation

View File

@ -1,6 +1,6 @@
import { NextMiddleware } from "next-api-middleware";
import { hashAPIKey } from "@calcom/ee/lib/api/apiKeys";
import { hashAPIKey } from "@calcom/features/ee/api-keys/lib/apiKeys";
import { isAdminGuard } from "@lib/utils/isAdmin";

View File

@ -3,17 +3,14 @@
const withTM = require("next-transpile-modules")([
"@calcom/app-store",
"@calcom/core",
"@calcom/ee",
"@calcom/lib",
"@calcom/prisma",
"@calcom/stripe",
"@calcom/ui",
"@calcom/dayjs",
"@calcom/emails",
"@calcom/dayjs",
"@calcom/embed-core",
"@calcom/dayjs",
"@calcom/embed-snippet",
"@calcom/features",
"@calcom/lib",
"@calcom/prisma",
"@calcom/ui",
]);
const { withAxiom } = require("next-axiom");