File tree Expand file tree Collapse file tree 9 files changed +11
-6
lines changed
Expand file tree Collapse file tree 9 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ COPY package.json bun.lock ./
1010
1111# Copy all workspace package.json files
1212COPY packages/db/package.json ./packages/db/
13+ COPY packages/email/package.json ./packages/email/
1314COPY packages/utils/package.json ./packages/utils/
1415COPY packages/integration-platform/package.json ./packages/integration-platform/
1516COPY packages/tsconfig/package.json ./packages/tsconfig/
@@ -29,6 +30,7 @@ WORKDIR /app
2930
3031# Copy workspace packages source
3132COPY packages/db ./packages/db
33+ COPY packages/email ./packages/email
3234COPY packages/utils ./packages/utils
3335COPY packages/integration-platform ./packages/integration-platform
3436COPY packages/tsconfig ./packages/tsconfig
@@ -72,6 +74,7 @@ COPY --from=builder /app/apps/api/package.json ./package.json
7274
7375# Copy workspace packages that are referenced by node_modules symlinks
7476COPY --from=builder /app/packages/db ./packages/db
77+ COPY --from=builder /app/packages/email ./packages/email
7578COPY --from=builder /app/packages/utils ./packages/utils
7679COPY --from=builder /app/packages/integration-platform ./packages/integration-platform
7780COPY --from=builder /app/packages/tsconfig ./packages/tsconfig
Original file line number Diff line number Diff line change 2626 "@trigger.dev/build" : " 4.0.6" ,
2727 "@trigger.dev/sdk" : " 4.0.6" ,
2828 "@trycompai/db" : " 1.3.19" ,
29+ "@trycompai/email" : " workspace:*" ,
2930 "@upstash/vector" : " ^1.2.2" ,
3031 "adm-zip" : " ^0.5.16" ,
3132 "ai" : " ^5.0.60" ,
Original file line number Diff line number Diff line change 11import { Injectable , Logger } from '@nestjs/common' ;
22import { db } from '@db' ;
3- import { isUserUnsubscribed } from '@comp /email' ;
3+ import { isUserUnsubscribed } from '@trycompai /email' ;
44import { sendEmail } from '../email/resend' ;
55import { CommentMentionedEmail } from '../email/templates/comment-mentioned' ;
66import { NovuService } from '../notifications/novu.service' ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414} from '@react-email/components' ;
1515import { Footer } from '../components/footer' ;
1616import { Logo } from '../components/logo' ;
17- import { getUnsubscribeUrl } from '@comp /email' ;
17+ import { getUnsubscribeUrl } from '@trycompai /email' ;
1818
1919interface Props {
2020 toName : string ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414} from '@react-email/components' ;
1515import { Footer } from '../components/footer' ;
1616import { Logo } from '../components/logo' ;
17- import { getUnsubscribeUrl } from '@comp /email' ;
17+ import { getUnsubscribeUrl } from '@trycompai /email' ;
1818
1919interface Props {
2020 toName : string ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414} from '@react-email/components' ;
1515import { Footer } from '../components/footer' ;
1616import { Logo } from '../components/logo' ;
17- import { getUnsubscribeUrl } from '@comp /email' ;
17+ import { getUnsubscribeUrl } from '@trycompai /email' ;
1818
1919interface Props {
2020 toName : string ;
Original file line number Diff line number Diff line change 11import { db } from '@db' ;
22import { Injectable , Logger } from '@nestjs/common' ;
3- import { isUserUnsubscribed } from '@comp /email' ;
3+ import { isUserUnsubscribed } from '@trycompai /email' ;
44import { sendEmail } from '../email/resend' ;
55import { TaskItemAssignedEmail } from '../email/templates/task-item-assigned' ;
66import { NovuService } from '../notifications/novu.service' ;
Original file line number Diff line number Diff line change 11import { Injectable , Logger } from '@nestjs/common' ;
22import { db } from '@db' ;
3- import { isUserUnsubscribed } from '@comp /email' ;
3+ import { isUserUnsubscribed } from '@trycompai /email' ;
44import { sendEmail } from '../email/resend' ;
55import { TaskItemMentionedEmail } from '../email/templates/task-item-mentioned' ;
66import { NovuService } from '../notifications/novu.service' ;
Original file line number Diff line number Diff line change 9191 "@trigger.dev/build": "4.0.6",
9292 "@trigger.dev/sdk": "4.0.6",
9393 "@trycompai/db": "1.3.19",
94+ "@trycompai/email": "workspace:*",
9495 "@upstash/vector": "^1.2.2",
9596 "adm-zip": "^0.5.16",
9697 "ai": "^5.0.60",
You can’t perform that action at this time.
0 commit comments